More tests update
[ACE_TAO.git] / TAO / tests / Bug_3000_Regression / Service.h
blobc34f4c98f46f96de368e11fbe85c747693f40bef
2 #ifndef CALLBACK_SERVICE_H
3 #define CALLBACK_SERVICE_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::Service interface
9 class Service
10 : public virtual POA_Test::Service
12 public:
13 /// Constructor
14 Service (CORBA::ORB_ptr orb);
16 // = The skeleton methods
17 virtual void run_test (Test::Callback_ptr callback);
19 virtual void shutdown (void);
21 private:
23 /// Use an ORB reference to shutdown the application.
24 CORBA::ORB_var orb_;
27 #include /**/ "ace/post.h"
28 #endif /* CALLBACK_SERVICE_H */