=default for generated implementation copy ctor
[ACE_TAO.git] / TAO / tests / Bug_1495_Regression / client_interceptor.cpp
blob333ac2cc6657179afa4d8ff7cf28d42785f2acfb
1 #include "client_interceptor.h"
2 #include "tao/OctetSeqC.h"
3 #include "ace/Log_Msg.h"
4 #include "tao/ORB_Constants.h"
5 #include "ace/OS_NS_string.h"
6 #include "ace/Thread.h"
8 Echo_Client_Request_Interceptor::
9 Echo_Client_Request_Interceptor (const char *id)
10 : myname_ ("Echo_Client_Interceptor"),
11 orb_id_ (CORBA::string_dup (id))
15 Echo_Client_Request_Interceptor::~Echo_Client_Request_Interceptor ()
19 char *
20 Echo_Client_Request_Interceptor::name ()
22 return CORBA::string_dup (this->myname_);
25 void
26 Echo_Client_Request_Interceptor::destroy ()
30 void
31 Echo_Client_Request_Interceptor::send_poll (
32 PortableInterceptor::ClientRequestInfo_ptr)
34 // Do Nothing
37 void
38 Echo_Client_Request_Interceptor::send_request (
39 PortableInterceptor::ClientRequestInfo_ptr ri)
41 ACE_UNUSED_ARG (ri);
42 // No Op
45 void
46 Echo_Client_Request_Interceptor::receive_reply (
47 PortableInterceptor::ClientRequestInfo_ptr ri)
49 ACE_UNUSED_ARG (ri);
50 // No Op
53 void
54 Echo_Client_Request_Interceptor::receive_other (
55 PortableInterceptor::ClientRequestInfo_ptr ri)
57 ACE_UNUSED_ARG (ri);
58 // no op
61 void
62 Echo_Client_Request_Interceptor::receive_exception (
63 PortableInterceptor::ClientRequestInfo_ptr ri)
65 // No op
66 ACE_UNUSED_ARG (ri);