Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_3673_Regression / NsShutdown.h
blobc849efdebb5a9b9a860a67f154e379ab97fb1649
2 #ifndef SHUTDOWN_H
3 #define SHUTDOWN_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::Hello interface
9 class NsShutdown
10 : public virtual POA_Test::NsShutdown
12 public:
13 /// Constructor
14 NsShutdown (CORBA::ORB_ptr orb);
16 virtual void shutdown ();
18 private:
19 /// Use an ORB reference to convert strings to objects and shutdown
20 /// the application.
21 CORBA::ORB_var orb_;
24 #include /**/ "ace/post.h"
25 #endif /* HELLO_H */