summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/Basic_SArgument_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/Basic_SArgument_T.inl')
-rw-r--r--TAO/tao/PortableServer/Basic_SArgument_T.inl73
1 files changed, 73 insertions, 0 deletions
diff --git a/TAO/tao/PortableServer/Basic_SArgument_T.inl b/TAO/tao/PortableServer/Basic_SArgument_T.inl
new file mode 100644
index 00000000000..815328650ed
--- /dev/null
+++ b/TAO/tao/PortableServer/Basic_SArgument_T.inl
@@ -0,0 +1,73 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+TAO::In_Basic_SArgument_T<S,Insert_Policy>::In_Basic_SArgument_T (void)
+{}
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+S
+TAO::In_Basic_SArgument_T<S,Insert_Policy>::arg (void) const
+{
+ return this->x_;
+}
+
+// ================================================================
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+TAO::Inout_Basic_SArgument_T<S,Insert_Policy>::Inout_Basic_SArgument_T (void)
+{}
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+S &
+TAO::Inout_Basic_SArgument_T<S,Insert_Policy>::arg (void)
+{
+ return this->x_;
+}
+
+// ================================================================
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+TAO::Out_Basic_SArgument_T<S,Insert_Policy>::Out_Basic_SArgument_T (void)
+{}
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+S &
+TAO::Out_Basic_SArgument_T<S,Insert_Policy>::arg (void)
+{
+ return this->x_;
+}
+
+// ================================================================
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+TAO::Ret_Basic_SArgument_T<S,Insert_Policy>::Ret_Basic_SArgument_T (void)
+{}
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+S &
+TAO::Ret_Basic_SArgument_T<S,Insert_Policy>::arg (void)
+{
+ return this->x_;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL