Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / Bug_1020_Regression / Echo.h
blob6f0ac823cdf4e2a77ae38f37985679f5b44e7438
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);
15 virtual Test::Payload * echo_payload (Test::Payload const & data);
17 private:
18 CORBA::ORB_var orb_;
21 #endif /* Echo__h_ */