summaryrefslogtreecommitdiff
path: root/TAO/tao/Stub.h
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/Stub.h
parent589acf3dc75ad72653131a2ef2fbf11f539ef821 (diff)
downloadATCD-7bd91ec29659d5a2776856f3aec04b8a73f6cc6a.tar.gz
ChangeLogTag: Mon May 27 08:14:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Stub.h')
-rw-r--r--TAO/tao/Stub.h25
1 files changed, 12 insertions, 13 deletions
diff --git a/TAO/tao/Stub.h b/TAO/tao/Stub.h
index aa11427cd91..da39e78a217 100644
--- a/TAO/tao/Stub.h
+++ b/TAO/tao/Stub.h
@@ -48,24 +48,23 @@ class TAO_Profile;
// by the interpreter.
typedef CORBA::Exception* (*TAO_Exception_Alloc) (void);
+/**
+ * @struct TAO_Exception_Data
+ *
+ * @brief Description of a single exception.
+ *
+ * The interpreter needs a way to allocate memory to hold the exception
+ * that was raised by the stub. This data structure provides the typecode
+ * for the exception as well as a static function pointer that
+ * does the job of memory allocation.
+ */
struct TAO_Exception_Data
{
- // = TITLE
- // TAO_Exception_Data
- //
- // = DESCRIPTION
- // Description of a single exception.
- //
- // The interpreter needs a way to allocate memory to hold the exception
- // that was raised by the stub. This data structure provides the typecode
- // for the exception as well as a static function pointer that
- // does the job of memory allocation.
-
+ /// Repository id of the exception.
const char *id;
- // Repository id of the exception.
+ /// The allocator for this exception.
TAO_Exception_Alloc alloc;
- // The allocator for this exception.
};
/**