// $Id$ #ifndef TAO_UB_STRING_SARGUMENT_T_CPP #define TAO_UB_STRING_SARGUMENT_T_CPP #include "tao/PortableServer/UB_String_SArgument_T.h" #if !defined (__ACE_INLINE__) #include "tao/PortableServer/UB_String_SArgument_T.inl" #endif /* __ACE_INLINE__ */ TAO_BEGIN_VERSIONED_NAMESPACE_DECL template CORBA::Boolean TAO::In_UB_String_SArgument_T::demarshal (TAO_InputCDR &cdr) { return cdr >> this->x_.out (); } #if TAO_HAS_INTERCEPTORS == 1 template void TAO::In_UB_String_SArgument_T::interceptor_value ( CORBA::Any *any) const { (*any) <<= this->x_.in (); } #endif /* TAO_HAS_INTERCEPTORS */ // =========================================================== template CORBA::Boolean TAO::Inout_UB_String_SArgument_T::marshal (TAO_OutputCDR &cdr) { return cdr << this->x_.in (); } template CORBA::Boolean TAO::Inout_UB_String_SArgument_T::demarshal (TAO_InputCDR & cdr) { return cdr >> this->x_.out (); } #if TAO_HAS_INTERCEPTORS == 1 template void TAO::Inout_UB_String_SArgument_T::interceptor_value ( CORBA::Any *any) const { (*any) <<= this->x_.in (); } #endif /* TAO_HAS_INTERCEPTORS */ // ============================================================== template CORBA::Boolean TAO::Out_UB_String_SArgument_T::marshal (TAO_OutputCDR &cdr) { return cdr << this->x_.in (); } #if TAO_HAS_INTERCEPTORS == 1 template void TAO::Out_UB_String_SArgument_T::interceptor_value ( CORBA::Any *any) const { (*any) <<= this->x_.in (); } #endif /* TAO_HAS_INTERCEPTORS */ // ============================================================ template CORBA::Boolean TAO::Ret_UB_String_SArgument_T::marshal (TAO_OutputCDR &cdr) { return cdr << this->x_.in (); } #if TAO_HAS_INTERCEPTORS == 1 template void TAO::Ret_UB_String_SArgument_T::interceptor_value ( CORBA::Any *any) const { (*any) <<= this->x_.in (); } #endif /* TAO_HAS_INTERCEPTORS */ TAO_END_VERSIONED_NAMESPACE_DECL #endif /* TAO_UB_STRING_SARGUMENT_T_CPP */