blob: 98b92c1bb727b435f7cb9e4c41114f82f92a600c (
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
29
30
31
|
//
// $Id$
//
#ifndef CALLBACK_CALLBACK_H
#define CALLBACK_CALLBACK_H
#include /**/ "ace/pre.h"
#include "TestS.h"
/// Implement the Test::Callback interface
class Callback
: public virtual POA_Test::Callback
{
public:
/// Constructor
Callback (CORBA::ORB_ptr orb);
// = The skeleton methods
virtual CORBA::Boolean are_you_there (CORBA::String_out answer);
virtual void test_oneway (void);
virtual void shutdown (void);
private:
/// Use an ORB reference to shutdown the application.
CORBA::ORB_var orb_;
};
#include /**/ "ace/post.h"
#endif /* CALLBACK_CALLBACK_H */
|