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.inl32
1 files changed, 32 insertions, 0 deletions
diff --git a/TAO/tao/Fixed_Array_Argument_T.inl b/TAO/tao/Fixed_Array_Argument_T.inl
index 45be413722d..71bd102564d 100644
--- a/TAO/tao/Fixed_Array_Argument_T.inl
+++ b/TAO/tao/Fixed_Array_Argument_T.inl
@@ -7,6 +7,14 @@ In_Fixed_Array_Argument_T (const S x)
: x_ ((S_slice *) x)
{}
+template<typename S, typename S_slice, typename S_forany>
+ACE_INLINE
+const S &
+TAO::In_Fixed_Array_Argument_T<S,S_slice,S_forany>::arg (void) const
+{
+ return this->x_.in ();
+}
+
// ===========================================================================
template<typename S, typename S_forany>
@@ -17,6 +25,14 @@ TAO::Inout_Fixed_Array_Argument_T<S,S_forany>::Inout_Fixed_Array_Argument_T (
: x_ (x)
{}
+template<typename S, typename S_forany>
+ACE_INLINE
+S &
+TAO::Inout_Fixed_Array_Argument_T<S,S_forany>::arg (void)
+{
+ return this->x_.inout ();
+}
+
// ===========================================================================
template<typename S, typename S_forany>
@@ -25,6 +41,14 @@ 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_forany>
+ACE_INLINE
+S &
+TAO::Out_Fixed_Array_Argument_T<S,S_forany>::arg (void)
+{
+ return this->x_.out ();
+}
+
// ===========================================================================
template<typename S, typename S_slice, typename S_var, typename S_forany>
@@ -35,6 +59,14 @@ 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>::arg (void)
+{
+ return this->x_.out ();
+}
+
+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)
{