Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_1269_Regression / Echo_Caller.h
blob76d1ae79a1ee2076e51ed7ecdab6feb5da491ed3
1 #ifndef Echo_Caller__h_
2 #define Echo_Caller__h_
3 /**
4 * @file Echo_Caller.h
6 * @author Carlos O'Ryan <coryan@atdesk.com>
7 */
8 #include "TestS.h"
10 class Echo_Caller : public POA_Test::Echo_Caller
12 public:
13 Echo_Caller(CORBA::ORB_ptr orb);
15 virtual void start_task(Test::Echo_ptr client);
17 virtual void shutdown();
19 private:
20 CORBA::ORB_var orb_;
23 #endif /* Echo_Caller__h_ */