blob: 787e37196f77f37b17c4566cc3ec8cb2672c48bd (
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
|
/**
* @file Echo_Caller.h
*
* $Id$
*
* @author Carlos O'Ryan <coryan@atdesk.com>
*
*/
#ifndef Echo_Caller__h_
#define Echo_Caller__h_
#include "TestS.h"
class Thread_Pool;
class Echo_Caller : public POA_Test::Echo_Caller
{
public:
Echo_Caller(CORBA::ORB_ptr orb, Thread_Pool *pool_);
virtual void start_task(Test::Echo_ptr client);
virtual void shutdown(void);
private:
CORBA::ORB_var orb_;
Thread_Pool *pool_;
};
#endif /* Echo_Caller__h_ */
|