summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/AMI/Server_ORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/AMI/Server_ORBInitializer.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/AMI/Server_ORBInitializer.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/TAO/tests/Portable_Interceptors/AMI/Server_ORBInitializer.cpp b/TAO/tests/Portable_Interceptors/AMI/Server_ORBInitializer.cpp
deleted file mode 100644
index dc409dd644e..00000000000
--- a/TAO/tests/Portable_Interceptors/AMI/Server_ORBInitializer.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- * @file Server_ORBInitializer.cpp
- *
- * $Id$
- *
- * @author Carlos O'Ryan <coryan@atdesk.com>
- */
-
-#include "Server_ORBInitializer.h"
-#include "Server_Interceptor.h"
-
-ACE_RCSID (AMI,
- Server_ORBInitializer,
- "$Id$")
-
-Server_ORBInitializer::Server_ORBInitializer (void)
-{
-}
-
-void
-Server_ORBInitializer::pre_init (
- PortableInterceptor::ORBInitInfo_ptr
- ACE_ENV_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
-}
-
-void
-Server_ORBInitializer::post_init (
- PortableInterceptor::ORBInitInfo_ptr info
- ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- PortableInterceptor::ServerRequestInterceptor_var interceptor(
- new Echo_Server_Request_Interceptor);
-
- info->add_server_request_interceptor (interceptor.in ()
- ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
-}