blob: 5cfc0ce828e13719a81cf90085f300970f1b3d56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// -*- C++ -*-
//=============================================================================
/**
* @file Smart_Proxies.h
*
* This file contains a base class for the generated smart proxy classes
* It's purpose is to hold the pointer to the real proxy
*
* @author Brian Wallis <brian.wallis@ot.com.au>
*/
//=============================================================================
#ifndef TAO_SMARTPROXIES_H
#define TAO_SMARTPROXIES_H
#include /**/ "ace/pre.h"
#include "tao/SmartProxies/smartproxies_export.h"
#include "tao/Object.h"
#include "tao/TAO_Singleton.h"
#include "tao/LocalObject.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class TAO_Smart_Proxy_Base
*
* @brief A base class for all TAO_IDL generated smart proxy base classes.
*
* Contains the _var pointer to the real proxy.
*/
class TAO_SmartProxies_Export TAO_Smart_Proxy_Base
: public ::CORBA::LocalObject
{
public:
/// Destructor
virtual ~TAO_Smart_Proxy_Base (void);
protected:
/// Constructor.
TAO_Smart_Proxy_Base (void);
/// Constructor.
TAO_Smart_Proxy_Base (CORBA::Object_ptr proxy);
/// The proxy to which remote/collocated calls are made.
CORBA::Object_var base_proxy_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
#include "tao/SmartProxies/Smart_Proxies.inl"
#endif /* defined INLINE */
#include /**/ "ace/post.h"
#endif /* TAO_SMARTPROXIES_H */
|