blob: 1488a615128df49e26908a127c5a4b3bd22b61d7 (
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 SERVER_LEAKS_PING_SERVICE_H
#define SERVER_LEAKS_PING_SERVICE_H
#include /**/ "ace/pre.h"
#include "TestS.h"
/// Implement the Test::Ping_Service interface
class Ping_Service
: public virtual POA_Test::Ping_Service
{
public:
/// Constructor
Ping_Service (CORBA::ORB_ptr orb);
// = The skeleton methods
virtual void ping (void);
virtual void shutdown (void);
private:
/// Use an ORB reference to convert strings to objects and shutdown
/// the application.
CORBA::ORB_var orb_;
};
#include /**/ "ace/post.h"
#endif /* SERVER_LEAKS_PING_SERVICE_H */
|