summaryrefslogtreecommitdiff
path: root/TAO/tests/TransportCurrent/lib/Client_ORBInitializer.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/TransportCurrent/lib/Client_ORBInitializer.h')
-rw-r--r--TAO/tests/TransportCurrent/lib/Client_ORBInitializer.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/TAO/tests/TransportCurrent/lib/Client_ORBInitializer.h b/TAO/tests/TransportCurrent/lib/Client_ORBInitializer.h
deleted file mode 100644
index dcafa6638f4..00000000000
--- a/TAO/tests/TransportCurrent/lib/Client_ORBInitializer.h
+++ /dev/null
@@ -1,54 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Client_ORBInitializer.h
- *
- * $Id$
- *
- * @author Iliyan jeliazkov <iliyan@ociweb.com>
- */
-//=============================================================================
-
-#ifndef CLIENT_ORBINITIALIZER_T_H
-#define CLIENT_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 Client_ORBInitializer :
- public PortableInterceptor::ORBInitializer
- {
- public:
- Client_ORBInitializer (PortableInterceptor::ClientRequestInterceptor_ptr interceptor);
- ~Client_ORBInitializer (void);
-
- virtual void pre_init(PortableInterceptor::ORBInitInfo*)
- throw (CORBA::SystemException);
-
- virtual void post_init(PortableInterceptor::ORBInitInfo*)
- throw (CORBA::SystemException);
-
- private:
- PortableInterceptor::ClientRequestInterceptor_var interceptor_;
- };
-
-}
-
-#include /**/ "ace/post.h"
-
-#endif /* CLIENT_ORBINITIALIZER_T_H */
-
-
-