blob: c0551d40b4dee289f0d830c25a2310dae1b136af (
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
|
/**
* @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)
ACE_THROW_SPEC((CORBA::SystemException));
virtual void shutdown(void)
ACE_THROW_SPEC((CORBA::SystemException));
private:
CORBA::ORB_var orb_;
Thread_Pool *pool_;
};
#endif /* Echo_Caller__h_ */
|