summaryrefslogtreecommitdiff
path: root/TAO/tao/Tagged_Profile.i
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-28 20:33:52 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-28 20:33:52 +0000
commit52607f6e7ad6e1e1844977a4d87e04ae2ac72faf (patch)
treea3915c9b06448ce1f88be6c6b3fb6c2c5337dae4 /TAO/tao/Tagged_Profile.i
parent7e420b992ff83889a838bf6f163a9e2c1bbf9cdd (diff)
downloadATCD-52607f6e7ad6e1e1844977a4d87e04ae2ac72faf.tar.gz
ChangeLogTag: Wed Feb 28 14:23:41 2001 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Tagged_Profile.i')
-rw-r--r--TAO/tao/Tagged_Profile.i22
1 files changed, 17 insertions, 5 deletions
diff --git a/TAO/tao/Tagged_Profile.i b/TAO/tao/Tagged_Profile.i
index cccf1d21463..99345085b95 100644
--- a/TAO/tao/Tagged_Profile.i
+++ b/TAO/tao/Tagged_Profile.i
@@ -1,12 +1,13 @@
// -*- C++ -*-
// $Id$
-ACE_INLINE
+ACE_INLINE
TAO_Tagged_Profile::TAO_Tagged_Profile (TAO_ORB_Core *orb_core)
: orb_core_ (orb_core),
object_key_ (),
profile_ (),
- addr_info_ ()
+ profile_index_ (0),
+ type_id_ ()
{
}
@@ -39,8 +40,19 @@ TAO_Tagged_Profile::tagged_profile (void)
return this->profile_;
}
-ACE_INLINE GIOP::IORAddressingInfo &
-TAO_Tagged_Profile::addressing_info (void)
+ACE_INLINE CORBA::ULong
+TAO_Tagged_Profile::profile_index (void)
{
- return this->addr_info_;
+ return this->profile_index_;
+}
+ACE_INLINE void
+TAO_Tagged_Profile::profile_index (CORBA::ULong ind)
+{
+ this->profile_index_ = ind;
+}
+
+ACE_INLINE ACE_CString &
+TAO_Tagged_Profile::type_id (void)
+{
+ return this->type_id_;
}