summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp79
1 files changed, 0 insertions, 79 deletions
diff --git a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp
deleted file mode 100644
index 3661e72841f..00000000000
--- a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp
+++ /dev/null
@@ -1,79 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-#include "Client_ORBInitializer.h"
-
-ACE_RCSID (Request_Interceptor_Flow,
- Client_ORBInitializer,
- "$Id$")
-
-#include "tao/Exception.h"
-
-#include "Client_Request_Interceptor.h"
-
-void
-Client_ORBInitializer::pre_init (
- PortableInterceptor::ORBInitInfo_ptr
- TAO_ENV_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
-}
-
-void
-Client_ORBInitializer::post_init (
- PortableInterceptor::ORBInitInfo_ptr info
- TAO_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- TAO_ENV_ARG_DEFN;
-
- // Create and register the test request interceptors.
- PortableInterceptor::ClientRequestInterceptor_ptr ci =
- PortableInterceptor::ClientRequestInterceptor::_nil ();
- ACE_NEW_THROW_EX (ci,
- Client_Request_Interceptor ("CLIENT A"),
- CORBA::NO_MEMORY (
- CORBA_SystemException::_tao_minor_code (
- TAO_DEFAULT_MINOR_CODE,
- ENOMEM),
- CORBA::COMPLETED_NO));
- ACE_CHECK;
-
- PortableInterceptor::ClientRequestInterceptor_var ci_interceptor =
- ci;
-
- info->add_client_request_interceptor (ci_interceptor.in (),
- ACE_TRY_ENV);
- ACE_CHECK;
-
- ACE_NEW_THROW_EX (ci,
- Client_Request_Interceptor ("CLIENT B"),
- CORBA::NO_MEMORY (
- CORBA_SystemException::_tao_minor_code (
- TAO_DEFAULT_MINOR_CODE,
- ENOMEM),
- CORBA::COMPLETED_NO));
- ACE_CHECK;
-
- ci_interceptor = ci;
-
- info->add_client_request_interceptor (ci_interceptor.in (),
- ACE_TRY_ENV);
- ACE_CHECK;
-
- ACE_NEW_THROW_EX (ci,
- Client_Request_Interceptor ("CLIENT C"),
- CORBA::NO_MEMORY (
- CORBA_SystemException::_tao_minor_code (
- TAO_DEFAULT_MINOR_CODE,
- ENOMEM),
- CORBA::COMPLETED_NO));
- ACE_CHECK;
-
- ci_interceptor = ci;
-
- info->add_client_request_interceptor (ci_interceptor.in (),
- ACE_TRY_ENV);
- ACE_CHECK;
-}