summaryrefslogtreecommitdiff
path: root/TAO/tao/Strategies/SHMIOP_Endpoint.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Strategies/SHMIOP_Endpoint.inl')
-rw-r--r--TAO/tao/Strategies/SHMIOP_Endpoint.inl25
1 files changed, 25 insertions, 0 deletions
diff --git a/TAO/tao/Strategies/SHMIOP_Endpoint.inl b/TAO/tao/Strategies/SHMIOP_Endpoint.inl
new file mode 100644
index 00000000000..e507b39c440
--- /dev/null
+++ b/TAO/tao/Strategies/SHMIOP_Endpoint.inl
@@ -0,0 +1,25 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE const char *
+TAO_SHMIOP_Endpoint::host (void) const
+{
+ return this->host_.in ();
+}
+
+ACE_INLINE CORBA::UShort
+TAO_SHMIOP_Endpoint::port (void) const
+{
+ return this->port_;
+}
+
+ACE_INLINE CORBA::UShort
+TAO_SHMIOP_Endpoint::port (CORBA::UShort p)
+{
+ return this->port_ = p;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL