summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3000_Regression/Service.h
blob: cf310f3a4bc21bf4f7e1cb82022fa5e46eadf4b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

#ifndef CALLBACK_SERVICE_H
#define CALLBACK_SERVICE_H
#include /**/ "ace/pre.h"

#include "TestS.h"

/// Implement the Test::Service interface
class Service
  : public virtual POA_Test::Service
{
public:
  /// Constructor
  Service (CORBA::ORB_ptr orb);

  // = The skeleton methods
  virtual void run_test (Test::Callback_ptr callback);

  virtual void shutdown ();

private:
  /// Use an ORB reference to shutdown the application.
  CORBA::ORB_var orb_;
};

#include /**/ "ace/post.h"
#endif /* CALLBACK_SERVICE_H */