summaryrefslogtreecommitdiff
path: root/TAO/tao/Fixed_Size_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/Fixed_Size_Argument_T.inl
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/Fixed_Size_Argument_T.inl')
-rw-r--r--TAO/tao/Fixed_Size_Argument_T.inl100
1 files changed, 0 insertions, 100 deletions
diff --git a/TAO/tao/Fixed_Size_Argument_T.inl b/TAO/tao/Fixed_Size_Argument_T.inl
deleted file mode 100644
index 7103db01281..00000000000
--- a/TAO/tao/Fixed_Size_Argument_T.inl
+++ /dev/null
@@ -1,100 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template<typename S,
- class Insert_Policy>
-ACE_INLINE
-TAO::In_Fixed_Size_Argument_T<S,Insert_Policy>::
-In_Fixed_Size_Argument_T (S const & x)
- : x_ (&x)
-{}
-
-template<typename S,
- class Insert_Policy>
-ACE_INLINE
-const S &
-TAO::In_Fixed_Size_Argument_T<S,Insert_Policy>::arg (void) const
-{
- return *this->x_;
-}
-
-// ==========================================================================
-
-template<typename S,
- class Insert_Policy>
-ACE_INLINE
-TAO::Inout_Fixed_Size_Argument_T<S,Insert_Policy>::
-Inout_Fixed_Size_Argument_T (S & x)
- : x_ (&x)
-{}
-
-template<typename S,
- class Insert_Policy>
-ACE_INLINE
-S &
-TAO::Inout_Fixed_Size_Argument_T<S,Insert_Policy>::arg (void)
-{
- return *this->x_;
-}
-
-// ==========================================================================
-
-template<typename S,
- class Insert_Policy>
-ACE_INLINE
-TAO::Out_Fixed_Size_Argument_T<S,Insert_Policy>::
-Out_Fixed_Size_Argument_T (S & x)
- : x_ (x)
-{
-}
-
-template<typename S,
- class Insert_Policy>
-ACE_INLINE
-S &
-TAO::Out_Fixed_Size_Argument_T<S,Insert_Policy>::arg (void)
-{
- return this->x_;
-}
-
-// ==========================================================================
-
-template<typename S,
- class Insert_Policy>
-ACE_INLINE
-TAO::Ret_Fixed_Size_Argument_T<S,Insert_Policy>::
-Ret_Fixed_Size_Argument_T (void)
-{
-}
-
-template<typename S,
- class Insert_Policy>
-ACE_INLINE
-S &
-TAO::Ret_Fixed_Size_Argument_T<S,Insert_Policy>::arg (void)
-{
- return this->x_;
-}
-
-template<typename S,
- class Insert_Policy>
-ACE_INLINE
-S
-TAO::Ret_Fixed_Size_Argument_T<S,Insert_Policy>::excp (void)
-{
- return this->x_;
-}
-
-template<typename S,
- class Insert_Policy>
-ACE_INLINE
-S
-TAO::Ret_Fixed_Size_Argument_T<S,Insert_Policy>::retn (void)
-{
- return this->x_;
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL