summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/Var_Size_SArgument_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/Var_Size_SArgument_T.inl')
-rw-r--r--TAO/tao/PortableServer/Var_Size_SArgument_T.inl67
1 files changed, 67 insertions, 0 deletions
diff --git a/TAO/tao/PortableServer/Var_Size_SArgument_T.inl b/TAO/tao/PortableServer/Var_Size_SArgument_T.inl
new file mode 100644
index 00000000000..80d2c3fd9bf
--- /dev/null
+++ b/TAO/tao/PortableServer/Var_Size_SArgument_T.inl
@@ -0,0 +1,67 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+template<typename S,
+ class Insert_Policy>
+S const &
+TAO::In_Var_Size_SArgument_T<S,Insert_Policy>::arg (void) const
+{
+ return this->x_;
+}
+
+// ==========================================================================
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+TAO::Inout_Var_Size_SArgument_T<S,Insert_Policy>::Inout_Var_Size_SArgument_T (void)
+{
+}
+
+template<typename S,
+ class Insert_Policy>
+S &
+TAO::Inout_Var_Size_SArgument_T<S,Insert_Policy>::arg (void)
+{
+ return this->x_;
+}
+
+// ==========================================================================
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+TAO::Out_Var_Size_SArgument_T<S,Insert_Policy>::Out_Var_Size_SArgument_T (void)
+{
+}
+
+template<typename S,
+ class Insert_Policy>
+S *&
+TAO::Out_Var_Size_SArgument_T<S,Insert_Policy>::arg (void)
+{
+ return this->x_.out ();
+}
+
+// ==========================================================================
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+TAO::Ret_Var_Size_SArgument_T<S,Insert_Policy>::Ret_Var_Size_SArgument_T (void)
+{
+}
+
+template<typename S,
+ class Insert_Policy>
+ACE_INLINE
+S *&
+TAO::Ret_Var_Size_SArgument_T<S,Insert_Policy>::arg (void)
+{
+ return this->x_.out ();
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL