blob: 087c0c86fbfb9f1f1560a8ece072ddeeb75a1a2c (
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
37
38
39
40
|
// -*- C++ -*-
//=============================================================================
/**
* @file test_i.h
*
* @author Phil Mesnier
*/
//=============================================================================
#ifndef CDR_OUT_ARG_TEST_I_H
#define CDR_OUT_ARG_TEST_I_H
#include "testS.h"
/**
* @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);
void shutdown (void);
private:
/// The ORB pseudo-reference (for shutdown).
CORBA::ORB_var orb_;
};
#endif /* TAO_INTERCEPTOR_TEST_I_H */
|