Remove ACE_UNUSED_ARG
[ACE_TAO.git] / TAO / interop-tests / CdrOutArg / tao / test_i.h
blob90dfd48bda9d890d7bed59bf0383cb7af62b95e9
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
24 public:
25 CDR_Out_Arg_i (CORBA::ORB_ptr orb);
27 void get_out (CORBA::Long_out arg);
29 void shutdown ();
31 private:
32 /// The ORB pseudo-reference (for shutdown).
33 CORBA::ORB_var orb_;
36 #endif /* TAO_INTERCEPTOR_TEST_I_H */