Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / OBV / Forward / Test_impl.h
blobddddbe5948f5e5b4eb7d25e173fe0a6f5fe256ee
2 //=============================================================================
3 /**
4 * @file Test_impl.h
6 * @author Boris Kolpackov <bosk@ipmce.ru>
7 */
8 //=============================================================================
11 #ifndef TAO_TEST_IMPL_H
12 #define TAO_TEST_IMPL_H
14 #include "TreeControllerS.h"
16 /**
17 * @class Test_impl
19 * @brief Implementation of Test interface
21 * This interface is provided to produce valuetypes and test
22 * marshaling
24 class Test_impl : public POA_Test
26 public:
27 /// ctor
28 Test_impl (CORBA::ORB_ptr orb);
30 virtual TreeController * reflect (
31 TreeController * tc);
33 virtual void shutdown (void);
35 private:
36 /// The ORB
37 CORBA::ORB_var orb_;
40 #endif /* TAO_TEST_IMPL_H */