Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / AMI / Echo.h
blobcfeeb6829166ea5cc97108f27f5f5b266fcc49cf
1 /**
2 * @file Echo.h
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
6 #ifndef Echo__h_
7 #define Echo__h_
9 #include "TestS.h"
10 #include "tao/PortableServer/PortableServer.h"
12 class Echo
13 : public POA_Test::Echo
15 public:
16 Echo(CORBA::ORB_ptr orb);
18 virtual char * echo_operation(char const * the_input);
19 virtual void shutdown();
21 private:
22 CORBA::ORB_var orb_;
25 #endif /* Echo__h_ */