Updated logging to include the class/method so that it is more obvious where these...
[ACE_TAO.git] / TAO / tao / GIOP_Message_Locate_Header.inl
blob4d38b855e104a81c996a07b4df2467502f218185
1 // -*- C++ -*-
2 //
3 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
5 ACE_INLINE
6 TAO_GIOP_Locate_Request_Header::TAO_GIOP_Locate_Request_Header (
7   TAO_InputCDR &msg,
8   TAO_ORB_Core *orb)
9   : request_id_ (0),
10     profile_ (orb),
11     incoming_ (&msg)
15 ACE_INLINE void
16 TAO_GIOP_Locate_Request_Header::request_id (CORBA::ULong id)
18   this->request_id_ = id;
21 ACE_INLINE CORBA::ULong
22 TAO_GIOP_Locate_Request_Header::request_id () const
24   return this->request_id_;
27 ACE_INLINE const TAO::ObjectKey &
28 TAO_GIOP_Locate_Request_Header::object_key () const
30   return this->profile_.object_key ();
33 ACE_INLINE TAO::ObjectKey &
34 TAO_GIOP_Locate_Request_Header::object_key (void)
36   return this->profile_.object_key ();
39 ACE_INLINE TAO_Tagged_Profile &
40 TAO_GIOP_Locate_Request_Header::profile (void)
42   return this->profile_;
45 ACE_INLINE TAO_InputCDR &
46 TAO_GIOP_Locate_Request_Header::incoming_stream (void)
48   return *this->incoming_;
51 TAO_END_VERSIONED_NAMESPACE_DECL