diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-12-15 20:06:51 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-12-15 20:06:51 +0000 |
commit | 2f33b02d0037bc8ee6788c2840c7822922c0c952 (patch) | |
tree | dd9680e93d92ed55dcab63954c75283209681cb8 /TAO/tao/Private_Connection_Descriptor.h | |
parent | bb98ac0816b9558d489efbdf87833dbbbbb75b80 (diff) | |
download | ATCD-2f33b02d0037bc8ee6788c2840c7822922c0c952.tar.gz |
ChangeLogTag:Fri Dec 15 11:36:08 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/tao/Private_Connection_Descriptor.h')
-rw-r--r-- | TAO/tao/Private_Connection_Descriptor.h | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/TAO/tao/Private_Connection_Descriptor.h b/TAO/tao/Private_Connection_Descriptor.h index 8ed9447f9af..dd7138f789e 100644 --- a/TAO/tao/Private_Connection_Descriptor.h +++ b/TAO/tao/Private_Connection_Descriptor.h @@ -1,18 +1,15 @@ // This may look like C, but it's really -*- C++ -*- -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// TAO -// -// = FILENAME -// Private_Connection_Descriptor.h -// -// = AUTHOR -// Marina Spivak <marina@cs.wustl.edu> -// -// ============================================================================ + +//============================================================================= +/** + * @file Private_Connection_Descriptor.h + * + * $Id$ + * + * @author Marina Spivak <marina@cs.wustl.edu> + */ +//============================================================================= + #ifndef TAO_PRIVATE_CONNECTION_DESCRIPTOR_H #define TAO_PRIVATE_CONNECTION_DESCRIPTOR_H @@ -32,7 +29,7 @@ class TAO_Export TAO_Private_Connection_Descriptor: public TAO_Connection_Descriptor_Interface { // = TITLE - // Concrete connection descriptor. + // Concrete connection descriptor. // // = DESCRIPTION // @@ -52,7 +49,7 @@ public: // = Abstract TAO_Connection_Descriptor methods to be implemented by - // subclasses. + // subclasses. virtual TAO_Connection_Descriptor_Interface *duplicate (void); @@ -65,12 +62,14 @@ private: // Descriptor should not be copied, except using the <duplicate> method. ACE_UNIMPLEMENTED_FUNC (TAO_Private_Connection_Descriptor (const TAO_Private_Connection_Descriptor&)) - ACE_UNIMPLEMENTED_FUNC (void operator= (const TAO_Private_Connection_Descriptor&)) + ACE_UNIMPLEMENTED_FUNC (void operator= (const TAO_Private_Connection_Descriptor&)) + /** + * Unique identifier of the object to which private connection + * identified with this descriptor belongs. The value of + * <object_id_> is the TAO_Stub* of the object. + */ long object_id_; - // Unique identifier of the object to which private connection - // identified with this descriptor belongs. The value of - // <object_id_> is the TAO_Stub* of the object. }; #if defined (__ACE_INLINE__) |