Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Bug_1270_Regression / Echo.h
blob41e286ce4daf3b4d9b75158157edf868e16e8919
2 /**
3 * @file Echo.h
5 * @author Carlos O'Ryan <coryan@atdesk.com>
6 */
7 #ifndef TAO_TESTS_BUG1270_ECHO_H
8 #define TAO_TESTS_BUG1270_ECHO_H
10 #include "TestS.h"
12 class Echo : public POA_Test::Echo
14 public:
15 Echo(CORBA::ORB_ptr orb,
16 int abort_counter);
18 virtual void echo_payload (Test::Payload const & data);
20 private:
21 CORBA::ORB_var orb_;
23 int abort_counter_;
26 #endif /* TAO_TESTS_BUG1270_ECHO_H*/