Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Bug_1020_Basic_Regression / Echo.h
bloba5e49ee9bde0c6fd408f63b3fbff8a7085ffff52
2 /**
3 * @file Echo.h
5 * @author Carlos O'Ryan <coryan@atdesk.com>
6 */
7 #ifndef BUG_1020_BASIC_REGRESSION_ECHO_H
8 #define BUG_1020_BASIC_REGRESSION_ECHO_H
9 #include "TestS.h"
11 class Echo : public POA_Test::Echo
13 public:
14 Echo (CORBA::ORB_ptr orb,
15 int abort_counter);
17 virtual void echo_payload (Test::Payload & data);
19 private:
20 CORBA::ORB_var orb_;
22 int abort_counter_;
24 TAO_SYNCH_MUTEX mutex_;
27 #endif /* BUG_1020_BASIC_REGRESSION_ECHO_H*/