Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_1330_Regression / Test_i.h
blobe2b6c7e28e5632897b496b6e09c15c975d368e71
1 // -*- C++ -*-
3 #if !defined BUG_1330_REGRESSION_TEST_I_H
4 #define BUG_1330_REGRESSION_TEST_I_H
6 #include "TestS.h"
8 class Test_i: public POA_Test
10 public:
11 /// Constructor
12 Test_i (CORBA::ORB_ptr orb);
14 /// Destructor
15 ~Test_i ();
17 /// A method
18 virtual void test_method();
20 virtual void shutdown ();
22 private:
23 /// Use an ORB reference to convert strings to objects and shutdown
24 /// the application.
25 CORBA::ORB_var orb_;
28 #endif /* ! BUG_1330_REGRESSION_TEST_I_H */