summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/Servant_Base.h
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2003-02-20 17:31:20 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2003-02-20 17:31:20 +0000
commit3c518e1bb372a5fabd9277c8862b9f5f79ada483 (patch)
treebc965de7216ef269eb3b8bde4d14b3cd288a9839 /TAO/tao/PortableServer/Servant_Base.h
parent21324f8d9270ee3052ebf5fd1a595e16ff3ba9f8 (diff)
downloadATCD-3c518e1bb372a5fabd9277c8862b9f5f79ada483.tar.gz
ChangeLogTag:Thu Feb 20 09:07:56 2003 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tao/PortableServer/Servant_Base.h')
-rw-r--r--TAO/tao/PortableServer/Servant_Base.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/TAO/tao/PortableServer/Servant_Base.h b/TAO/tao/PortableServer/Servant_Base.h
index b04fcfc0cbc..6c4a47ea519 100644
--- a/TAO/tao/PortableServer/Servant_Base.h
+++ b/TAO/tao/PortableServer/Servant_Base.h
@@ -30,7 +30,8 @@ class TAO_Operation_Table;
*
* @brief Base class for skeletons and servants.
*
- * The POA spec requires that all servants inherit from this class.
+ * The POA spec requires that all servants inherit from this class'
+ * base class.
*/
class TAO_PortableServer_Export TAO_ServantBase
: public virtual TAO_Abstract_ServantBase
@@ -38,7 +39,6 @@ class TAO_PortableServer_Export TAO_ServantBase
public:
friend class TAO_POA;
friend class TAO_Object_Adapter;
- friend class CORBA_Object;
friend class TAO_Local_ServantBase;
/// Destructor.
@@ -59,11 +59,12 @@ public:
);
/// Query the Interface Repository for the interface definition.
- virtual CORBA_InterfaceDef_ptr _get_interface (
- ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
+ virtual CORBA::InterfaceDef_ptr _get_interface (
+ ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
- /// Default <_get_component>: always returns CORBA::Object::_nil().
- virtual CORBA::Object_ptr _get_component (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
+ /// Default @c _get_component>: always returns CORBA::Object::_nil().
+ virtual CORBA::Object_ptr _get_component (
+ ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
/// Get the correct vtable.
virtual void *_downcast (const char *repository_id) = 0;