summaryrefslogtreecommitdiff
path: root/TAO/tests/TransportCurrent/lib/Server_ORBInitializer.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/TransportCurrent/lib/Server_ORBInitializer.h')
-rw-r--r--TAO/tests/TransportCurrent/lib/Server_ORBInitializer.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/TAO/tests/TransportCurrent/lib/Server_ORBInitializer.h b/TAO/tests/TransportCurrent/lib/Server_ORBInitializer.h
deleted file mode 100644
index 6a00e61fca1..00000000000
--- a/TAO/tests/TransportCurrent/lib/Server_ORBInitializer.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Server_ORBInitializer.h
- *
- * $Id$
- *
- * @author Iliyan jeliazkov <iliyan@ociweb.com>
- */
-//=============================================================================
-
-#ifndef SERVER_ORBINITIALIZER_T_H
-#define SERVER_ORBINITIALIZER_T_H
-#include /**/ "ace/pre.h"
-#include /**/ "ace/config.h"
-
-#include /**/ "Current_Test_Export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/PI/PI.h"
-#include "tao/PortableInterceptorC.h"
-
-namespace Test
-{
-
- class Current_Test_Export Server_ORBInitializer :
- public PortableInterceptor::ORBInitializer
- {
- public:
- Server_ORBInitializer (PortableInterceptor::ServerRequestInterceptor_ptr interceptor);
- ~Server_ORBInitializer (void);
-
- virtual void pre_init(PortableInterceptor::ORBInitInfo*)
- throw (CORBA::SystemException);
-
- virtual void post_init(PortableInterceptor::ORBInitInfo*)
- throw (CORBA::SystemException);
-
- private:
- PortableInterceptor::ServerRequestInterceptor_var interceptor_;
- };
-
-}
-
-#include /**/ "ace/post.h"
-
-#endif /* SERVER_ORBINITIALIZER_T_H */
-