blob: 06948665fc2af39ff736a281e754ef9a4ec6dc33 (
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
32
33
34
35
36
37
38
39
|
#ifndef TAO_SERVER_I_H
#define TAO_SERVER_I_H
#include "callbackS.h"
/// Implement the Test::Server interface
class Server_i : public POA_Test::Server
{
public:
/// Constructor.
Server_i (void);
/// Return 1 when the shutdown method has been invoked.
int done (void);
/// Implement the CORBA methods
//@{
void set_callback (Test::Callback_ptr callback);
void request (Test::TimeStamp,
const Test::Payload &);
void shutdown (void);
//@}
private:
/// A flag to terminate the event loop
int done_;
/// The callback object
Test::Callback_var callback_;
};
#if defined(__ACE_INLINE__)
#include "Server_i.inl"
#endif /* __ACE_INLINE__ */
#endif /* TAO_SERVER_I_H */
|