// $Id$ #ifndef TAO_SPECIAL_BASIC_ARGUMENT_T_C #define TAO_SPECIAL_BASIC_ARGUMENT_T_C #include "tao/Special_Basic_Argument_T.h" #include "tao/Dynamic_ParameterC.h" #if !defined (__ACE_INLINE__) #include "tao/Special_Basic_Argument_T.inl" #endif /* __ACE_INLINE__ */ ACE_RCSID (tao, Special_Basic_Argument_T, "$Id$") template CORBA::Boolean TAO::In_Special_Basic_Argument_T::marshal (TAO_OutputCDR & cdr) { return cdr << from_S (this->x_); } template void TAO::In_Special_Basic_Argument_T::interceptor_param ( Dynamic::Parameter & p ) { p.argument <<= from_S (this->x_); p.mode = CORBA::PARAM_IN; } // =========================================================== template CORBA::Boolean TAO::Inout_Special_Basic_Argument_T::marshal ( TAO_OutputCDR & cdr ) { return cdr << from_S (this->x_); } template CORBA::Boolean TAO::Inout_Special_Basic_Argument_T::demarshal ( TAO_InputCDR & cdr ) { return cdr >> to_S (this->x_); } template void TAO::Inout_Special_Basic_Argument_T::interceptor_param ( Dynamic::Parameter & p ) { p.argument <<= from_S (this->x_); p.mode = CORBA::PARAM_INOUT; } // ============================================================== template CORBA::Boolean TAO::Out_Special_Basic_Argument_T::demarshal ( TAO_InputCDR & cdr ) { return cdr >> to_S (this->x_); } template void TAO::Out_Special_Basic_Argument_T::interceptor_param ( Dynamic::Parameter & p ) { p.argument <<= from_S (this->x_); p.mode = CORBA::PARAM_OUT; } // ============================================================ template CORBA::Boolean TAO::Ret_Special_Basic_Argument_T::demarshal ( TAO_InputCDR & cdr ) { return cdr >> to_S (this->x_); } template void TAO::Ret_Special_Basic_Argument_T::interceptor_result ( CORBA::Any * any ) { (*any) <<= from_S (this->x_); } #endif /* TAO_SPECIAL_BASIC_ARGUMENT_T_C */