summaryrefslogtreecommitdiff
path: root/TAO/tao/Var_Array_Argument_T.inl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/Var_Array_Argument_T.inl
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/Var_Array_Argument_T.inl')
-rw-r--r--TAO/tao/Var_Array_Argument_T.inl107
1 files changed, 0 insertions, 107 deletions
diff --git a/TAO/tao/Var_Array_Argument_T.inl b/TAO/tao/Var_Array_Argument_T.inl
deleted file mode 100644
index 49ae7c5f813..00000000000
--- a/TAO/tao/Var_Array_Argument_T.inl
+++ /dev/null
@@ -1,107 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template<typename S_forany,
- class Insert_Policy>
-ACE_INLINE
-TAO::In_Var_Array_Argument_T<S_forany,Insert_Policy>::
-In_Var_Array_Argument_T (const typename S_forany::_slice_type * x)
- : x_ (const_cast<typename S_forany::_slice_type *> (x))
-{
-}
-
-template<typename S_forany,
- class Insert_Policy>
-ACE_INLINE
-typename S_forany::_slice_type const *
-TAO::In_Var_Array_Argument_T<S_forany,Insert_Policy>::arg (void) const
-{
- return this->x_.in ();
-}
-
-// ==========================================================================
-
-template<typename S_forany,
- class Insert_Policy>
-ACE_INLINE
-TAO::Inout_Var_Array_Argument_T<S_forany,Insert_Policy>::
-Inout_Var_Array_Argument_T (typename S_forany::_slice_type *&x)
- : x_ (x)
-{
-}
-
-template<typename S_forany,
- class Insert_Policy>
-ACE_INLINE
-typename S_forany::_slice_type *
-TAO::Inout_Var_Array_Argument_T<S_forany,Insert_Policy>::arg (void)
-{
- return this->x_.inout ();
-}
-
-// ==========================================================================
-
-template<typename S_out,
- typename S_forany,
- class Insert_Policy>
-ACE_INLINE
-TAO::Out_Var_Array_Argument_T<S_out,S_forany,Insert_Policy>::
-Out_Var_Array_Argument_T (S_out x)
- : x_ (x.ptr ())
-{
-}
-
-template<typename S_out,
- typename S_forany,
- class Insert_Policy>
-ACE_INLINE
-typename S_forany::_slice_type *&
-TAO::Out_Var_Array_Argument_T<S_out,S_forany,Insert_Policy>::arg (void)
-{
- return this->x_;
-}
-
-// ==========================================================================
-
-template<typename S_var,
- typename S_forany,
- class Insert_Policy>
-ACE_INLINE
-TAO::Ret_Var_Array_Argument_T<S_var,S_forany,Insert_Policy>::
-Ret_Var_Array_Argument_T (void)
-{}
-
-template<typename S_var,
- typename S_forany,
- class Insert_Policy>
-ACE_INLINE
-typename S_forany::_slice_type *&
-TAO::Ret_Var_Array_Argument_T<S_var,S_forany,Insert_Policy>::arg (void)
-{
- return this->x_.out ();
-}
-
-template<typename S_var,
- typename S_forany,
- class Insert_Policy>
-ACE_INLINE
-typename S_forany::_slice_type *
-TAO::Ret_Var_Array_Argument_T<S_var,S_forany,Insert_Policy>::excp (void)
-{
- return this->x_.ptr ();
-}
-
-template<typename S_var,
- typename S_forany,
- class Insert_Policy>
-ACE_INLINE
-typename S_forany::_slice_type *
-TAO::Ret_Var_Array_Argument_T<S_var,S_forany,Insert_Policy>::retn (void)
-{
- return this->x_._retn ();
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL