#include "client_interceptor.h" #include "tao/OctetSeqC.h" #include "ace/Log_Msg.h" #include "tao/ORB_Constants.h" #include "ace/OS_NS_string.h" #include "ace/Thread.h" Echo_Client_Request_Interceptor:: Echo_Client_Request_Interceptor (const char *id) : myname_ ("Echo_Client_Interceptor"), orb_id_ (CORBA::string_dup (id)) { } Echo_Client_Request_Interceptor::~Echo_Client_Request_Interceptor (void) { } char * Echo_Client_Request_Interceptor::name (void) { return CORBA::string_dup (this->myname_); } void Echo_Client_Request_Interceptor::destroy (void) { } void Echo_Client_Request_Interceptor::send_poll ( PortableInterceptor::ClientRequestInfo_ptr) { // Do Nothing } void Echo_Client_Request_Interceptor::send_request ( PortableInterceptor::ClientRequestInfo_ptr ri) { ACE_UNUSED_ARG (ri); // No Op } void Echo_Client_Request_Interceptor::receive_reply ( PortableInterceptor::ClientRequestInfo_ptr ri) { ACE_UNUSED_ARG (ri); // No Op } void Echo_Client_Request_Interceptor::receive_other ( PortableInterceptor::ClientRequestInfo_ptr ri) { ACE_UNUSED_ARG (ri); // no op } void Echo_Client_Request_Interceptor::receive_exception ( PortableInterceptor::ClientRequestInfo_ptr ri) { // No op ACE_UNUSED_ARG (ri); }