summaryrefslogtreecommitdiff
path: root/TAO/tao/Fixed_Array_Argument_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Fixed_Array_Argument_T.inl')
-rw-r--r--TAO/tao/Fixed_Array_Argument_T.inl115
1 files changed, 115 insertions, 0 deletions
diff --git a/TAO/tao/Fixed_Array_Argument_T.inl b/TAO/tao/Fixed_Array_Argument_T.inl
new file mode 100644
index 00000000000..45be413722d
--- /dev/null
+++ b/TAO/tao/Fixed_Array_Argument_T.inl
@@ -0,0 +1,115 @@
+// $Id$
+
+template<typename S, typename S_slice, typename S_forany>
+ACE_INLINE
+TAO::In_Fixed_Array_Argument_T<S,S_slice,S_forany>::
+In_Fixed_Array_Argument_T (const S x)
+ : x_ ((S_slice *) x)
+{}
+
+// ===========================================================================
+
+template<typename S, typename S_forany>
+ACE_INLINE
+TAO::Inout_Fixed_Array_Argument_T<S,S_forany>::Inout_Fixed_Array_Argument_T (
+ S x
+ )
+ : x_ (x)
+{}
+
+// ===========================================================================
+
+template<typename S, typename S_forany>
+ACE_INLINE
+TAO::Out_Fixed_Array_Argument_T<S,S_forany>::Out_Fixed_Array_Argument_T (S x)
+ : x_ (x)
+{}
+
+// ===========================================================================
+
+template<typename S, typename S_slice, typename S_var, typename S_forany>
+ACE_INLINE
+TAO::Ret_Fixed_Array_Argument_T<S,S_slice,S_var,S_forany>::
+Ret_Fixed_Array_Argument_T (void)
+{}
+
+template<typename S, typename S_slice, typename S_var, typename S_forany>
+ACE_INLINE
+S_slice *
+TAO::Ret_Fixed_Array_Argument_T<S,S_slice,S_var,S_forany>::excp (void)
+{
+ return this->x_.ptr ();
+}
+
+template<typename S, typename S_slice, typename S_var, typename S_forany>
+ACE_INLINE
+S_slice *
+TAO::Ret_Fixed_Array_Argument_T<S,S_slice,S_var,S_forany>::retn (void)
+{
+ return this->x_._retn ();
+}
+
+// ===========================================================================
+
+template<typename S, typename S_forany>
+ACE_INLINE
+TAO::In_Fixed_Array_SArgument_T<S,S_forany>::In_Fixed_Array_SArgument_T (void)
+{}
+
+template<typename S, typename S_forany>
+ACE_INLINE
+const S &
+TAO::In_Fixed_Array_SArgument_T<S,S_forany>::arg (void) const
+{
+ return this->x_;
+}
+
+// ===========================================================================
+
+template<typename S, typename S_forany>
+ACE_INLINE
+TAO::Inout_Fixed_Array_SArgument_T<S,S_forany>::
+Inout_Fixed_Array_SArgument_T (void)
+{}
+
+template<typename S, typename S_forany>
+ACE_INLINE
+S &
+TAO::Inout_Fixed_Array_SArgument_T<S,S_forany>::arg (void)
+{
+ return this->x_;
+}
+
+// ===========================================================================
+
+template<typename S, typename S_forany>
+ACE_INLINE
+TAO::Out_Fixed_Array_SArgument_T<S,S_forany>::Out_Fixed_Array_SArgument_T (
+ void
+ )
+{}
+
+template<typename S, typename S_forany>
+ACE_INLINE
+S &
+TAO::Out_Fixed_Array_SArgument_T<S,S_forany>::arg (void)
+{
+ return this->x_;
+}
+
+// ===========================================================================
+
+template<typename S_slice, typename S_var, typename S_forany>
+ACE_INLINE
+TAO::Ret_Fixed_Array_SArgument_T<S_slice,S_var,S_forany>::
+Ret_Fixed_Array_SArgument_T (void)
+{}
+
+template<typename S_slice, typename S_var, typename S_forany>
+ACE_INLINE
+S_slice *&
+TAO::Ret_Fixed_Array_SArgument_T<S_slice,S_var,S_forany>::arg (void)
+{
+ return this->x_.out ();
+}
+