Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_1269_Regression / Echo.h
blobfddaa4e33e8a1b1bca6fe7e7a3e93a70a80c43fc
1 #ifndef Echo__h_
2 #define Echo__h_
3 /**
4 * @file Echo.h
6 * @author Carlos O'Ryan <coryan@atdesk.com>
7 */
8 #include "TestS.h"
10 class Echo : public POA_Test::Echo
12 public:
13 Echo(CORBA::ORB_ptr orb,
14 int abort_counter);
16 virtual void echo_payload (Test::Payload const & data);
18 private:
19 CORBA::ORB_var orb_;
21 int abort_counter_;
24 #endif /* Echo__h_ */