#ifndef TAO_VECTOR_SARGUMENT_T_CPP #define TAO_VECTOR_SARGUMENT_T_CPP #if defined (ACE_TEMPLATES_REQUIRE_PRAGMA) #include "tao/PortableServer/Vector_SArgument_T.h" #endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */ #if !defined (__ACE_INLINE__) #include "tao/PortableServer/Vector_SArgument_T.inl" #endif /* __ACE_INLINE__ */ TAO_BEGIN_VERSIONED_NAMESPACE_DECL template class Insert_Policy> CORBA::Boolean TAO::In_Vector_SArgument_T::demarshal (TAO_InputCDR &cdr) { return cdr >> this->x_; } #if TAO_HAS_INTERCEPTORS == 1 template class Insert_Policy> void TAO::In_Vector_SArgument_T::interceptor_value ( CORBA::Any *any) const { Insert_Policy::any_insert (any, this->x_); } #endif /* TAO_HAS_INTERCEPTORS */ // =========================================================== template class Insert_Policy> CORBA::Boolean TAO::Inout_Vector_SArgument_T::marshal (TAO_OutputCDR &cdr) { return cdr << this->x_; } template class Insert_Policy> CORBA::Boolean TAO::Inout_Vector_SArgument_T::demarshal (TAO_InputCDR & cdr) { return cdr >> this->x_; } #if TAO_HAS_INTERCEPTORS == 1 template class Insert_Policy> void TAO::Inout_Vector_SArgument_T::interceptor_value ( CORBA::Any *any) const { Insert_Policy::any_insert (any, this->x_); } #endif /* TAO_HAS_INTERCEPTORS */ // ============================================================== template class Insert_Policy> CORBA::Boolean TAO::Out_Vector_SArgument_T::marshal (TAO_OutputCDR &cdr) { return cdr << this->x_; } #if TAO_HAS_INTERCEPTORS == 1 template class Insert_Policy> void TAO::Out_Vector_SArgument_T::interceptor_value ( CORBA::Any *any) const { Insert_Policy::any_insert (any, this->x_); } #endif /* TAO_HAS_INTERCEPTORS */ // ============================================================ template class Insert_Policy> CORBA::Boolean TAO::Ret_Vector_SArgument_T::marshal (TAO_OutputCDR &cdr) { return cdr << this->x_; } #if TAO_HAS_INTERCEPTORS == 1 template class Insert_Policy> void TAO::Ret_Vector_SArgument_T::interceptor_value ( CORBA::Any *any) const { Insert_Policy::any_insert (any, this->x_); } #endif /* TAO_HAS_INTERCEPTORS */ TAO_END_VERSIONED_NAMESPACE_DECL #endif /* TAO_VECTOR_SARGUMENT_T_CPP */