summaryrefslogtreecommitdiff
path: root/TAO/tao/Fixed_Size_Argument_T.cpp
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.cpp
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/Fixed_Size_Argument_T.cpp')
-rw-r--r--TAO/tao/Fixed_Size_Argument_T.cpp111
1 files changed, 0 insertions, 111 deletions
diff --git a/TAO/tao/Fixed_Size_Argument_T.cpp b/TAO/tao/Fixed_Size_Argument_T.cpp
deleted file mode 100644
index 676100c2403..00000000000
--- a/TAO/tao/Fixed_Size_Argument_T.cpp
+++ /dev/null
@@ -1,111 +0,0 @@
-// $Id$
-
-#ifndef TAO_FIXED_SIZE_ARGUMENT_T_CPP
-#define TAO_FIXED_SIZE_ARGUMENT_T_CPP
-
-#include "tao/Fixed_Size_Argument_T.h"
-
-#if !defined (__ACE_INLINE__)
-#include "tao/Fixed_Size_Argument_T.inl"
-#endif /* __ACE_INLINE__ */
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template<typename S,
- class Insert_Policy>
-CORBA::Boolean
-TAO::In_Fixed_Size_Argument_T<S,Insert_Policy>::marshal (TAO_OutputCDR &cdr)
-{
- return cdr << *this->x_;
-}
-
-#if TAO_HAS_INTERCEPTORS == 1
-
-template<typename S,
- class Insert_Policy>
-void
-TAO::In_Fixed_Size_Argument_T<S,Insert_Policy>::interceptor_value (CORBA::Any *any) const
-{
- Insert_Policy::any_insert (any, *this->x_);
-}
-
-#endif /* TAO_HAS_INTERCEPTORS */
-
-// ===========================================================
-
-template<typename S,
- class Insert_Policy>
-CORBA::Boolean
-TAO::Inout_Fixed_Size_Argument_T<S,Insert_Policy>::marshal (TAO_OutputCDR &cdr)
-{
- return cdr << *this->x_;
-}
-
-template<typename S,
- class Insert_Policy>
-CORBA::Boolean
-TAO::Inout_Fixed_Size_Argument_T<S,Insert_Policy>::demarshal (TAO_InputCDR & cdr)
-{
- return cdr >> *this->x_;
-}
-
-#if TAO_HAS_INTERCEPTORS == 1
-
-template<typename S,
- class Insert_Policy>
-void
-TAO::Inout_Fixed_Size_Argument_T<S,Insert_Policy>::interceptor_value (CORBA::Any *any) const
-{
- Insert_Policy::any_insert (any, *this->x_);
-}
-
-#endif /* TAO_HAS_INTERCEPTORS */
-
-// ==============================================================
-
-template<typename S,
- class Insert_Policy>
-CORBA::Boolean
-TAO::Out_Fixed_Size_Argument_T<S,Insert_Policy>::demarshal (TAO_InputCDR & cdr)
-{
- return cdr >> this->x_;
-}
-
-#if TAO_HAS_INTERCEPTORS == 1
-
-template<typename S,
- class Insert_Policy>
-void
-TAO::Out_Fixed_Size_Argument_T<S,Insert_Policy>::interceptor_value (CORBA::Any *any) const
-{
- Insert_Policy::any_insert (any, this->x_);
-}
-
-#endif /* TAO_HAS_INTERCEPTORS */
-
-// ============================================================
-
-template<typename S,
- class Insert_Policy>
-CORBA::Boolean
-TAO::Ret_Fixed_Size_Argument_T<S,Insert_Policy>::demarshal (TAO_InputCDR & cdr)
-{
- return cdr >> this->x_;
-}
-
-#if TAO_HAS_INTERCEPTORS == 1
-
-template<typename S,
- class Insert_Policy>
-void
-TAO::Ret_Fixed_Size_Argument_T<S,Insert_Policy>::
-interceptor_value (CORBA::Any *any) const
-{
- Insert_Policy::any_insert (any, this->x_);
-}
-
-#endif /* TAO_HAS_INTERCEPTORS */
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#endif /* TAO_FIXED_SIZE_ARGUMENT_T_CPP */