blob: a35c3689b07833ce0dd7152f2c6034bc9573e5ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef SERVER_TASK_H
#define SERVER_TASK_H
#include /**/ "ace/pre.h"
#include "tao/ORB.h"
#include "ace/Task.h"
class Server_Task : public ACE_Task_Base
{
public:
Server_Task (CORBA::ORB_ptr orb,
ACE_Thread_Manager *thr_mgr);
int svc (void);
private:
CORBA::ORB_var orb_;
};
#include /**/ "ace/post.h"
#endif /* SERVER_TASK_H */
|