=default for generated implementation copy ctor
[ACE_TAO.git] / TAO / tests / Bug_3000_Regression / Service.h
blobcf310f3a4bc21bf4f7e1cb82022fa5e46eadf4b4
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 ();
21 private:
22 /// Use an ORB reference to shutdown the application.
23 CORBA::ORB_var orb_;
26 #include /**/ "ace/post.h"
27 #endif /* CALLBACK_SERVICE_H */