summaryrefslogtreecommitdiff
path: root/TAO/tao/Adapter.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2004-04-29 07:24:37 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2004-04-29 07:24:37 +0000
commit993ecae3c9ba2d6b303fb79b8c13cdc8b2a387b9 (patch)
treebb99aa240f37acf65d1753d24677b65c163e4f6f /TAO/tao/Adapter.h
parent4eb27e9c23b404625b70f7d86cef198a8cde2925 (diff)
downloadATCD-993ecae3c9ba2d6b303fb79b8c13cdc8b2a387b9.tar.gz
ChangeLogTag: Thu Apr 29 07:24:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Adapter.h')
-rw-r--r--TAO/tao/Adapter.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/Adapter.h b/TAO/tao/Adapter.h
index f8c1cea0e5d..6e6dd7ed1ef 100644
--- a/TAO/tao/Adapter.h
+++ b/TAO/tao/Adapter.h
@@ -82,20 +82,20 @@ public:
ACE_THROW_SPEC ((CORBA::SystemException)) = 0;
enum {
+ /// The operation was successfully dispatched, an exception may
+ /// have been raised, but that is a correct execution too.
DS_OK,
- // The operation was successfully dispatched, an exception may
- // have been raised, but that is a correct execution too.
+ /// There was a problem in dispatching the operation.
DS_FAILED,
- // There was a problem in dispatching the operation.
+ /// The key is not in the right format for this Adapter, try the
+ /// next one.
DS_MISMATCHED_KEY,
- // The key is not in the right format for this Adapter, try the
- // next one.
+ /// Forward the request to another object reference, this decouples
+ /// the ORB from the PortableServer::ForwardRequest exception
DS_FORWARD
- // Forward the request to another object reference, this decouples
- // the ORB from the PortableServer::ForwardRequest exception
};
/// Return the name, i.e. the object id used to resolve it in the
@@ -173,7 +173,7 @@ public:
CORBA::Long initialize_collocated_object (TAO_Stub *,
CORBA::Object_ptr o);
- /// Fetch the adapter named <name>
+ /// Fetch the adapter named @a name
TAO_Adapter *find_adapter (const char *name) const;
private: