blob: bd5a1eb672611d614e3921f6aa72e816d9675d31 (
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
41
42
43
44
45
46
|
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/OBV/Forward
//
// = FILENAME
// Test_impl.h
//
// = AUTHOR
// Boris Kolpackov <bosk@ipmce.ru>
//
// ============================================================================
#ifndef TAO_TEST_IMPL_H
#define TAO_TEST_IMPL_H
#include "TreeControllerS.h"
class Test_impl : public POA_Test
{
// = TITLE
// Implementation of Test interface
//
// = DESCRIPTION
// This interface is provided to produce valuetypes and test
// marshaling
//
public:
Test_impl (CORBA::ORB_ptr orb);
// ctor
virtual TreeController * reflect (
TreeController * tc)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual void shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException));
private:
CORBA::ORB_var orb_;
// The ORB
};
#endif /* TAO_TEST_IMPL_H */
|