Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_3768_Regression / TestServer.h
blobf3bfd06a415486b9f02e2f9100039ce1d18cb4cc
1 #ifndef TESTSERVER_H
2 #define TESTSERVER_H
3 #include /**/ "ace/pre.h"
5 #include "TestS.h"
7 /// Implement the Test::TestServer interface
8 class TestServer
9 : public virtual POA_Test::TestServer
11 public:
12 // = The skeleton methods
13 virtual void pass_callback (Test::TestCallback_ptr test);
15 bool got_callback ();
16 void make_callback ();
17 void shutdown_client ();
19 private:
20 Test::TestCallback_var callback_;
23 #include /**/ "ace/post.h"
24 #endif /* TESTSERVER_H */