Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / CallbackTest / Callback.h
bloba2ae7b9064b82ee3fb8bfb7c1ee0b2634efd1deb
2 #ifndef CALLBACK_CALLBACK_H
3 #define CALLBACK_CALLBACK_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::Callback interface
9 class Callback
10 : public virtual POA_Test::Callback
12 public:
13 /// Constructor
14 Callback (CORBA::ORB_ptr orb);
16 // = The skeleton methods
17 virtual CORBA::Boolean are_you_there (CORBA::String_out answer);
19 virtual void test_oneway (void);
21 virtual void shutdown (void);
22 private:
23 /// Use an ORB reference to shutdown the application.
24 CORBA::ORB_var orb_;
27 #include /**/ "ace/post.h"
28 #endif /* CALLBACK_CALLBACK_H */