summaryrefslogtreecommitdiff
path: root/TAO/tao/Fixed_Size_Argument_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Fixed_Size_Argument_T.inl')
-rw-r--r--TAO/tao/Fixed_Size_Argument_T.inl32
1 files changed, 32 insertions, 0 deletions
diff --git a/TAO/tao/Fixed_Size_Argument_T.inl b/TAO/tao/Fixed_Size_Argument_T.inl
index 30298aff9a1..2ebfc6eca45 100644
--- a/TAO/tao/Fixed_Size_Argument_T.inl
+++ b/TAO/tao/Fixed_Size_Argument_T.inl
@@ -6,6 +6,14 @@ TAO::In_Fixed_Size_Argument_T<S>::In_Fixed_Size_Argument_T (S const & x)
: x_ (&x)
{}
+template<typename S>
+ACE_INLINE
+const S &
+TAO::In_Fixed_Size_Argument_T<S>::arg (void) const
+{
+ return *this->x_;
+}
+
// ==========================================================================
template<typename S>
@@ -14,6 +22,14 @@ TAO::Inout_Fixed_Size_Argument_T<S>::Inout_Fixed_Size_Argument_T (S & x)
: x_ (&x)
{}
+template<typename S>
+ACE_INLINE
+S &
+TAO::Inout_Fixed_Size_Argument_T<S>::arg (void)
+{
+ return *this->x_;
+}
+
// ==========================================================================
template<typename S>
@@ -22,6 +38,14 @@ TAO::Out_Fixed_Size_Argument_T<S>::Out_Fixed_Size_Argument_T (S & x)
: x_ (x)
{}
+template<typename S>
+ACE_INLINE
+S &
+TAO::Out_Fixed_Size_Argument_T<S>::arg (void)
+{
+ return this->x_;
+}
+
// ==========================================================================
template<typename S>
@@ -31,6 +55,14 @@ TAO::Ret_Fixed_Size_Argument_T<S>::Ret_Fixed_Size_Argument_T (void)
template<typename S>
ACE_INLINE
+S &
+TAO::Ret_Fixed_Size_Argument_T<S>::arg (void)
+{
+ return this->x_;
+}
+
+template<typename S>
+ACE_INLINE
S
TAO::Ret_Fixed_Size_Argument_T<S>::excp (void)
{