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/GIOP_Message_Locate_Header.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/GIOP_Message_Locate_Header.h')
-rw-r--r-- | TAO/tao/GIOP_Message_Locate_Header.h | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/TAO/tao/GIOP_Message_Locate_Header.h b/TAO/tao/GIOP_Message_Locate_Header.h index 392ec131b71..81311d766f7 100644 --- a/TAO/tao/GIOP_Message_Locate_Header.h +++ b/TAO/tao/GIOP_Message_Locate_Header.h @@ -1,21 +1,18 @@ // -*- C++ -*- -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// TAO -// -// = FILENAME -// GIOP_Message_Headers.h -// -// = DESCRIPTION -// Some assorted GIOP structure mappings -// -// = AUTHOR -// Balachandran Natarajan <bala@cs.wustl.edu> -// -// ============================================================================ + +//============================================================================= +/** + * @file GIOP_Message_Locate_Header.h + * + * $Id$ + * + * Some assorted GIOP structure mappings + * + * + * @author Balachandran Natarajan <bala@cs.wustl.edu> + */ +//============================================================================= + #ifndef TAO_GIOP_MESSAGE_LOCATE_HEADER_H #define TAO_GIOP_MESSAGE_LOCATE_HEADER_H @@ -29,46 +26,49 @@ #endif /* ACE_LACKS_PRAGMA_ONCE */ +/** + * @class TAO_GIOP_Locate_Request_Header + * + * @brief Location service support + */ class TAO_Export TAO_GIOP_Locate_Request_Header { - // = TITLE - // Location service support public: + /// Constructor TAO_GIOP_Locate_Request_Header (TAO_InputCDR &msg, TAO_ORB_Core *core); - // Constructor + /// Set the id void request_id (CORBA::ULong id); - // Set the id + /// Get the request id CORBA::ULong request_id (void); - // Get the request id + /// Get the object_key in read mode.. const TAO_ObjectKey &object_key (void) const; - // Get the object_key in read mode.. + /// Get the object_key in read/write mode.. TAO_ObjectKey &object_key (void); - // Get the object_key in read/write mode.. + /// Get the reference to the underlying profile TAO_Tagged_Profile &profile (void); - // Get the reference to the underlying profile + /// Get the CDR stream for read/write TAO_InputCDR &incoming_stream (void); - // Get the CDR stream for read/write private: + /// Request id CORBA::ULong request_id_; - // Request id + /// Profile info. TAO_Tagged_Profile profile_; - // Profile info. + /// Object Key TAO_ObjectKey object_key_; - // Object Key + /// Incoming CDR stream TAO_InputCDR *incoming_; - // Incoming CDR stream }; #if defined (__ACE_INLINE__) |