Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_2800_Regression / NsShutdown.h
blob1a6c841d7002f7c928be002f075c3b6e9651bec2
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 (void);
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 */