Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / AMI / Echo_Handler.h
blobc6724297e0fc657132e11ed80a6e13bbeb098276
1 /**
2 * @file Echo_Handler.h
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
6 #ifndef Echo_Handler__h_
7 #define Echo_Handler__h_
9 #include "TestS.h"
10 #include "tao/PortableServer/PortableServer.h"
12 class Echo_Handler
13 : public POA_Test::AMI_EchoHandler
15 public:
16 Echo_Handler();
18 virtual void echo_operation(char const * retval);
19 virtual void echo_operation_excep(::Messaging::ExceptionHolder * h);
20 virtual void shutdown();
21 virtual void shutdown_excep(::Messaging::ExceptionHolder * h);
23 CORBA::ULong replies () const;
25 private:
26 CORBA::ULong replies_;
29 #endif /* Echo_Handler__h_ */