Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_3768_Regression / TestServer.h
blobab15dcf77c06fdcd1f59c94ee0537b9fefda7994
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 (void);
16 void make_callback (void);
17 void shutdown_client (void);
19 private:
20 Test::TestCallback_var callback_;
23 #include /**/ "ace/post.h"
24 #endif /* TESTSERVER_H */