Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_1330_Regression / Test_i.h
blob0ae7dfefaceb33d93bd8470b33928f55476ac238
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 (void);
17 /// A method
18 virtual void test_method(void);
20 virtual void shutdown (void);
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 */