Location service support. More...
#include <GIOP_Message_Locate_Header.h>
Public Member Functions | |
TAO_GIOP_Locate_Request_Header (TAO_InputCDR &msg, TAO_ORB_Core *core) | |
Constructor. | |
void | request_id (CORBA::ULong id) |
Set the id. | |
CORBA::ULong | request_id (void) const |
Get the request id. | |
const TAO::ObjectKey & | object_key (void) const |
Get the object_key in read mode.. | |
TAO::ObjectKey & | object_key (void) |
Get the object_key in read/write mode.. | |
TAO_Tagged_Profile & | profile (void) |
Get the reference to the underlying profile. | |
TAO_InputCDR & | incoming_stream (void) |
Get the CDR stream for read/write. | |
Private Attributes | |
CORBA::ULong | request_id_ |
Request id. | |
TAO_Tagged_Profile | profile_ |
Profile info. | |
TAO::ObjectKey | object_key_ |
Object Key. | |
TAO_InputCDR * | incoming_ |
Incoming CDR stream. |
Location service support.
Definition at line 35 of file GIOP_Message_Locate_Header.h.
TAO_GIOP_Locate_Request_Header::TAO_GIOP_Locate_Request_Header | ( | TAO_InputCDR & | msg, | |
TAO_ORB_Core * | core | |||
) |
Constructor.
Definition at line 8 of file GIOP_Message_Locate_Header.inl.
: request_id_ (0), profile_ (orb), incoming_ (&msg) { }
TAO_InputCDR & TAO_GIOP_Locate_Request_Header::incoming_stream | ( | void | ) |
Get the CDR stream for read/write.
Definition at line 48 of file GIOP_Message_Locate_Header.inl.
{ return *this->incoming_; }
TAO::ObjectKey & TAO_GIOP_Locate_Request_Header::object_key | ( | void | ) |
Get the object_key in read/write mode..
Definition at line 36 of file GIOP_Message_Locate_Header.inl.
{ return this->profile_.object_key (); }
const TAO::ObjectKey & TAO_GIOP_Locate_Request_Header::object_key | ( | void | ) | const |
Get the object_key in read mode..
Definition at line 30 of file GIOP_Message_Locate_Header.inl.
{ return this->profile_.object_key (); }
TAO_Tagged_Profile & TAO_GIOP_Locate_Request_Header::profile | ( | void | ) |
Get the reference to the underlying profile.
Definition at line 42 of file GIOP_Message_Locate_Header.inl.
{ return this->profile_; }
void TAO_GIOP_Locate_Request_Header::request_id | ( | CORBA::ULong | id | ) |
Set the id.
Definition at line 18 of file GIOP_Message_Locate_Header.inl.
{ this->request_id_ = id; }
CORBA::ULong TAO_GIOP_Locate_Request_Header::request_id | ( | void | ) | const |
Get the request id.
Definition at line 24 of file GIOP_Message_Locate_Header.inl.
{ return this->request_id_; }
Incoming CDR stream.
Definition at line 72 of file GIOP_Message_Locate_Header.h.
TAO::ObjectKey TAO_GIOP_Locate_Request_Header::object_key_ [private] |
Object Key.
Definition at line 69 of file GIOP_Message_Locate_Header.h.
Profile info.
Definition at line 66 of file GIOP_Message_Locate_Header.h.
Request id.
Definition at line 63 of file GIOP_Message_Locate_Header.h.