Merge pull request #1815 from sonndinh/get_signal_info
[ACE_TAO.git] / TAO / interop-tests / CdrOutArg / tao / test_i.h
blob087c0c86fbfb9f1f1560a8ece072ddeeb75a1a2c
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file test_i.h
7 * @author Phil Mesnier
8 */
9 //=============================================================================
12 #ifndef CDR_OUT_ARG_TEST_I_H
13 #define CDR_OUT_ARG_TEST_I_H
15 #include "testS.h"
17 /**
18 * @class CDR_Out_Arg_i
20 * Implements the CDR_Out_Arg interface
22 class CDR_Out_Arg_i : public POA_Interop::CDR_Out_Arg
25 public:
27 CDR_Out_Arg_i (CORBA::ORB_ptr orb);
29 void get_out (CORBA::Long_out arg);
31 void shutdown (void);
33 private:
35 /// The ORB pseudo-reference (for shutdown).
36 CORBA::ORB_var orb_;
40 #endif /* TAO_INTERCEPTOR_TEST_I_H */