Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Bug_1361_Regression / Echo_Caller.h
blobbf2fb1fcd8984846f32f1e9c79948840dd71cbff
1 /**
2 * @file Echo_Caller.h
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
6 #ifndef Echo_Caller__h_
7 #define Echo_Caller__h_
9 #include "TestS.h"
11 class Thread_Pool;
13 class Echo_Caller : public POA_Test::Echo_Caller
15 public:
16 Echo_Caller(Thread_Pool *pool_);
18 virtual void start_task(Test::Echo_ptr client);
20 virtual void shutdown();
22 private:
23 Thread_Pool *pool_;
26 #endif /* Echo_Caller__h_ */