Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / Bug_3790_Regression / simple_test_i.h
blobf005511d55426ad3ab4079b26eb95a09b4e2e059
2 #ifndef HELLO_H
3 #define HELLO_H
5 #include "simple_testS.h"
7 class Simple_Test_i
8 : public virtual POA_simple::SimpleTest_T
10 public:
11 /// Constructor
12 Simple_Test_i (CORBA::ORB_ptr orb);
14 // = The skeleton methods
15 virtual void shutdown ();
17 private:
18 /// Use an ORB reference to convert strings to objects and shutdown
19 /// the application.
20 CORBA::ORB_var orb_;
23 #endif /* HELLO_H */