summaryrefslogtreecommitdiff
path: root/TAO/tao/Profile.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Profile.inl')
-rw-r--r--TAO/tao/Profile.inl67
1 files changed, 67 insertions, 0 deletions
diff --git a/TAO/tao/Profile.inl b/TAO/tao/Profile.inl
new file mode 100644
index 00000000000..4cbbee30eb3
--- /dev/null
+++ b/TAO/tao/Profile.inl
@@ -0,0 +1,67 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE CORBA::ULong
+TAO_Profile::tag (void) const
+{
+ return this->tag_;
+}
+
+ACE_INLINE const TAO_GIOP_Message_Version &
+TAO_Profile::version (void) const
+{
+ return this->version_;
+}
+
+ACE_INLINE TAO_ORB_Core *
+TAO_Profile::orb_core (void) const
+{
+ return this->orb_core_;
+}
+
+ACE_INLINE void
+TAO_Profile::forward_to (TAO_MProfile *mprofiles)
+{
+ this->forward_to_ = mprofiles;
+}
+
+ACE_INLINE TAO_MProfile *
+TAO_Profile::forward_to (void)
+{
+ return this->forward_to_;
+}
+
+ACE_INLINE TAO_MProfile *
+TAO_Profile::forward_to_i (void)
+{
+ return this->forward_to_;
+}
+
+ACE_INLINE const TAO_Tagged_Components&
+TAO_Profile::tagged_components (void) const
+{
+ return this->tagged_components_;
+}
+
+ACE_INLINE TAO_Tagged_Components&
+TAO_Profile::tagged_components (void)
+{
+ return this->tagged_components_;
+}
+
+ACE_INLINE CORBA::Short
+TAO_Profile::addressing_mode (void) const
+{
+ return this->addressing_mode_;
+}
+
+ACE_INLINE const TAO::ObjectKey &
+TAO_Profile::object_key (void) const
+{
+ return this->ref_object_key_->object_key ();
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL