Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Reliable_Oneways / Shutdown_Helper.h
blob994bf94396b4ce0694d7a615e657f785c2d8875e
2 #ifndef SHUTDOWN_HELPER_H
3 #define SHUTDOWN_HELPER_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::Shutdown_Helper interface
9 class Shutdown_Helper
10 : public virtual POA_Test::Shutdown_Helper
12 public:
13 /// Constructor
14 Shutdown_Helper (CORBA::ORB_ptr orb);
16 // = The skeleton methods
17 virtual void shutdown (void);
19 private:
20 /// Use an ORB reference to convert strings to objects and shutdown
21 /// the application.
22 CORBA::ORB_var orb_;
25 #include /**/ "ace/post.h"
26 #endif /* SHUTDOWN_HELPER_H */