// -*- C++ -*- //============================================================================= /** * @file IORInterceptor_Adapter_Factory_Impl.h * * @author George Edwards */ //============================================================================= #ifndef TAO_IORINTERCEPTOR_ADAPTER_FACTORY_IMPL_H #define TAO_IORINTERCEPTOR_ADAPTER_FACTORY_IMPL_H #include /**/ "ace/pre.h" #include "tao/IORInterceptor/iorinterceptor_export.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "tao/IORInterceptor_Adapter_Factory.h" #include "ace/Service_Config.h" TAO_BEGIN_VERSIONED_NAMESPACE_DECL class TAO_IORInterceptor_Adapter; /** * @class TAO_IORInterceptor_Adapter_Factory_Impl * * @brief TAO_IORInterceptor_Adapter_Factory_Impl. * * Class that creates instances of TAO_IORInterceptor_Adapter (one per ORB). * This is the derived class that contains the actual implementations. */ class TAO_IORInterceptor_Export TAO_IORInterceptor_Adapter_Factory_Impl : public TAO_IORInterceptor_Adapter_Factory { public: virtual ~TAO_IORInterceptor_Adapter_Factory_Impl (); virtual TAO_IORInterceptor_Adapter *create (); // Used to force the initialization of the ORB code. static int Initializer (); }; static int TAO_Requires_IORInterceptor_Initializer = TAO_IORInterceptor_Adapter_Factory_Impl::Initializer (); TAO_END_VERSIONED_NAMESPACE_DECL ACE_STATIC_SVC_DECLARE (TAO_IORInterceptor_Adapter_Factory_Impl) ACE_FACTORY_DECLARE (TAO_IORInterceptor, TAO_IORInterceptor_Adapter_Factory_Impl) #define TAO_IORINTERCEPTOR_SAFE_INCLUDE #include "tao/IORInterceptor/IORInterceptorC.h" #undef TAO_IORINTERCEPTOR_SAFE_INCLUDE #include /**/ "ace/post.h" #endif /* TAO_IORINTERCEPTOR_ADAPTER_FACTORY_IMPL_H */