3 //=============================================================================
5 * @file IORInterceptor_Adapter_Factory.h
7 * @author George Edwards <g.edwards@vanderbilt.edu>
9 //=============================================================================
12 #ifndef TAO_IORINTERCEPTOR_ADAPTER_FACTORY_H
13 #define TAO_IORINTERCEPTOR_ADAPTER_FACTORY_H
15 #include /**/ "ace/pre.h"
16 #include "ace/Service_Object.h"
18 #if !defined (ACE_LACKS_PRAGMA_ONCE)
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 #include "tao/orbconf.h"
23 #include "tao/TAO_Export.h"
25 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
27 class TAO_IORInterceptor_Adapter
;
30 * @class TAO_IORInterceptor_Adapter_Factory
32 * @brief TAO_IORInterceptor_Adapter_Factory.
34 * Class that creates one instance of TAO_IOR_Interceptor_Adapter per
35 * ORB on the ORB's first usage of its ior_interceptor_adapter_. This is a base
36 * class for the actual implementation in the TAO_IORInterceptor library.
38 class TAO_Export TAO_IORInterceptor_Adapter_Factory
39 : public ACE_Service_Object
42 virtual ~TAO_IORInterceptor_Adapter_Factory ();
44 virtual TAO_IORInterceptor_Adapter
* create () = 0;
47 TAO_END_VERSIONED_NAMESPACE_DECL
49 #include /**/ "ace/post.h"
51 #endif /* TAO_IORINTERCEPTOR_ADAPTER_FACTORY_H */