summaryrefslogtreecommitdiff
path: root/TAO/interop-tests/CdrOutArg/orbix/test_i.h
blob: 3562dda71cea32a72551ffc724bedbe5a2a08443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// -*- C++ -*-

//=============================================================================
/**
 *  @file   test_i.h
 *
 *  @author Phil Mesnier
 */
//=============================================================================


#ifndef CDR_OUT_ARG_TEST_I_H
#define CDR_OUT_ARG_TEST_I_H

#include "testS.hh"

/**
 * @class CDR_Out_Arg_i
 *
 * Implements the CDR_Out_Arg interface
 */
class CDR_Out_Arg_i : public POA_Interop::CDR_Out_Arg
{
public:
  CDR_Out_Arg_i (CORBA::ORB_ptr orb);

  void get_out (CORBA::Long_out arg) IT_THROW_DECL((CORBA::SystemException));

  void shutdown () IT_THROW_DECL((CORBA::SystemException));

private:
  /// The ORB pseudo-reference (for shutdown).
  CORBA::ORB_var orb_;
};

#endif /* TAO_INTERCEPTOR_TEST_I_H */