summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Portable_Interceptors/Bug_2510_Regression/Client_ORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Portable_Interceptors/Bug_2510_Regression/Client_ORBInitializer.cpp')
-rw-r--r--ACE/TAO/tests/Portable_Interceptors/Bug_2510_Regression/Client_ORBInitializer.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Portable_Interceptors/Bug_2510_Regression/Client_ORBInitializer.cpp b/ACE/TAO/tests/Portable_Interceptors/Bug_2510_Regression/Client_ORBInitializer.cpp
new file mode 100644
index 00000000000..405d64c01a2
--- /dev/null
+++ b/ACE/TAO/tests/Portable_Interceptors/Bug_2510_Regression/Client_ORBInitializer.cpp
@@ -0,0 +1,42 @@
+// -*- C++ -*-
+//
+// $Id$
+//
+
+#include "Client_ORBInitializer.h"
+#include "client_interceptor.h"
+
+ACE_RCSID (Bug_2510_Regression, Client_ORBInitializer, "$Id$")
+
+Client_ORBInitializer::Client_ORBInitializer (void)
+{
+}
+
+void
+Client_ORBInitializer::pre_init (
+ PortableInterceptor::ORBInitInfo_ptr)
+{
+}
+
+void
+Client_ORBInitializer::post_init (
+ PortableInterceptor::ORBInitInfo_ptr info)
+{
+ PortableInterceptor::SlotId slot_id = info->allocate_slot_id ();
+
+ PortableInterceptor::ClientRequestInterceptor_ptr interceptor =
+ PortableInterceptor::ClientRequestInterceptor::_nil ();
+
+ // Install the Echo client request interceptor
+ ACE_NEW_THROW_EX (interceptor,
+ Echo_Client_Request_Interceptor (),
+ CORBA::NO_MEMORY ());
+
+ PortableInterceptor::ClientRequestInterceptor_var
+ client_interceptor = interceptor;
+
+ info->add_client_request_interceptor (client_interceptor.in ());
+
+ ACE_UNUSED_ARG (slot_id);
+}
+