summaryrefslogtreecommitdiff
path: root/TAO/tao/SmartProxies
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-05-27 06:34:14 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-05-27 06:34:14 +0000
commit7bd91ec29659d5a2776856f3aec04b8a73f6cc6a (patch)
treeb3f5f8299d246daaa83c2aace6cb36b1a5502922 /TAO/tao/SmartProxies
parent589acf3dc75ad72653131a2ef2fbf11f539ef821 (diff)
downloadATCD-7bd91ec29659d5a2776856f3aec04b8a73f6cc6a.tar.gz
ChangeLogTag: Mon May 27 08:14:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/SmartProxies')
-rw-r--r--TAO/tao/SmartProxies/Smart_Proxies.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/TAO/tao/SmartProxies/Smart_Proxies.h b/TAO/tao/SmartProxies/Smart_Proxies.h
index 391d8ca10f5..6582b0c1b11 100644
--- a/TAO/tao/SmartProxies/Smart_Proxies.h
+++ b/TAO/tao/SmartProxies/Smart_Proxies.h
@@ -31,26 +31,29 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+/**
+ * @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
{
- // = TITLE
- // TAO_Smart_Proxy_Base
- //
- // = DESCRIPTION
- // A base class for all TAO_IDL generated smart proxy base classes
- // Contains the _var pointer to the real proxy
public:
+ /// Destructor
virtual ~TAO_Smart_Proxy_Base (void);
- // Destructor
protected:
+ /// Constructor.
TAO_Smart_Proxy_Base (void);
+
+ /// Constructor.
TAO_Smart_Proxy_Base (CORBA::Object_ptr proxy);
- // Constructors
+ /// The proxy to which remote/collocated calls are made.
CORBA::Object_var base_proxy_;
- // The proxy to which remote/collocated calls are made.
};
#if defined (__ACE_INLINE__)