summaryrefslogtreecommitdiff
path: root/TAO/tao/Basic_Argument_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Basic_Argument_T.inl')
-rw-r--r--TAO/tao/Basic_Argument_T.inl80
1 files changed, 0 insertions, 80 deletions
diff --git a/TAO/tao/Basic_Argument_T.inl b/TAO/tao/Basic_Argument_T.inl
deleted file mode 100644
index 423792367a6..00000000000
--- a/TAO/tao/Basic_Argument_T.inl
+++ /dev/null
@@ -1,80 +0,0 @@
-// $Id$
-
-template<typename S>
-ACE_INLINE
-TAO::In_Basic_Argument_T<S>::In_Basic_Argument_T (S const & x)
- : x_ (x)
-{}
-
-template<typename S>
-ACE_INLINE
-S
-TAO::In_Basic_Argument_T<S>::arg (void) const
-{
- return this->x_;
-}
-
-// ================================================================
-
-template<typename S>
-ACE_INLINE
-TAO::Inout_Basic_Argument_T<S>::Inout_Basic_Argument_T (S & x)
- : x_ (x)
-{}
-
-template<typename S>
-ACE_INLINE
-S &
-TAO::Inout_Basic_Argument_T<S>::arg (void)
-{
- return this->x_;
-}
-
-// ================================================================
-
-template<typename S>
-ACE_INLINE
-TAO::Out_Basic_Argument_T<S>::Out_Basic_Argument_T (S & x)
- : x_ (x)
-{}
-
-template<typename S>
-ACE_INLINE
-S &
-TAO::Out_Basic_Argument_T<S>::arg (void)
-{
- return this->x_;
-}
-
-// ================================================================
-
-template<typename S>
-ACE_INLINE
-TAO::Ret_Basic_Argument_T<S>::Ret_Basic_Argument_T (void)
-{
-}
-
-template<typename S>
-ACE_INLINE
-S &
-TAO::Ret_Basic_Argument_T<S>::arg (void)
-{
- return this->x_;
-}
-
-template<typename S>
-ACE_INLINE
-S
-TAO::Ret_Basic_Argument_T<S>::excp (void)
-{
- return this->x_;
-}
-
-template<typename S>
-ACE_INLINE
-S
-TAO::Ret_Basic_Argument_T<S>::retn (void)
-{
- return this->x_;
-}
-