blob: c34f4c98f46f96de368e11fbe85c747693f40bef (
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
28
|
#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 (void);
private:
/// Use an ORB reference to shutdown the application.
CORBA::ORB_var orb_;
};
#include /**/ "ace/post.h"
#endif /* CALLBACK_SERVICE_H */
|