Merge pull request #2254 from esohns/fstat_size_64_bits
[ACE_TAO.git] / TAO / tests / OBV / Collocated / Forward / Test_impl.h
blob32d544194c1e1162594bb476937c0bd05c6bbdc0
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"
15 #include "TreeBaseS.h"
16 #include "TreeNodeS.h"
18 /**
19 * @class Test_impl
21 * @brief Implementation of Test interface
23 * This interface is provided to produce valuetypes and test
24 * marshaling
26 class Test_impl : public POA_Test
28 public:
29 /// ctor
30 Test_impl (CORBA::ORB_ptr orb);
32 virtual TreeController * reflect (
33 TreeController * tc);
35 virtual void shutdown ();
37 private:
38 /// The ORB
39 CORBA::ORB_var orb_;
42 #endif /* TAO_TEST_IMPL_H */