3 //=============================================================================
5 * @file Adapter_Factory.h
7 * @author Carlos O'Ryan (coryan@uci.edu)
9 //=============================================================================
11 #ifndef TAO_ADAPTER_FACTORY_H
12 #define TAO_ADAPTER_FACTORY_H
14 #include /**/ "ace/pre.h"
16 #include /**/ "tao/TAO_Export.h"
18 #if !defined (ACE_LACKS_PRAGMA_ONCE)
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 #include /**/ "tao/Versioned_Namespace.h"
24 #include "ace/Service_Object.h"
27 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
32 class TAO_Export TAO_Adapter_Factory
: public ACE_Service_Object
36 virtual ~TAO_Adapter_Factory ();
38 /// Create a new adapter
39 virtual TAO_Adapter
*create (TAO_ORB_Core
*orb_core
) = 0;
42 TAO_END_VERSIONED_NAMESPACE_DECL
44 #include /**/ "ace/post.h"
46 #endif /* TAO_ADAPTER_FACTORY_H */