// -*- C++ -*- //============================================================================= /** * @file Default_Stub_Factory.h * * Defines the a factory interface for creating Stubs. * This class creates the default stub, that is used in * plain CORBA. * * @author Angelo Corsaro */ //============================================================================= #ifndef TAO_DEFAULT_STUB_FACTORY_H_ #define TAO_DEFAULT_STUB_FACTORY_H_ #include /**/ "ace/pre.h" #include "ace/Service_Config.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "tao/Stub_Factory.h" TAO_BEGIN_VERSIONED_NAMESPACE_DECL /** * @class TAO_Default_Stub_Factory * * This class is a factory whose product is the plain TAO_Stub used by * TAO. Its subclasses build Stub object that are specialization of * the TAO_Stub. As an example TAO_RT_Stub_Factory creates * RT_TAO_Stub. This factory, or one of its subclasses is dynamically * plugged into the ORB_Core, and is used by the ORB_Core to create * Stub Objects. */ class TAO_Export TAO_Default_Stub_Factory : public TAO_Stub_Factory { public: /// Destructor. virtual ~TAO_Default_Stub_Factory (void); /// Creates a Stub Object. virtual TAO_Stub *create_stub (const char *repository_id, const TAO_MProfile &profiles, TAO_ORB_Core *orb_core); }; ACE_STATIC_SVC_DECLARE_EXPORT (TAO, TAO_Default_Stub_Factory) ACE_FACTORY_DECLARE (TAO, TAO_Default_Stub_Factory) TAO_END_VERSIONED_NAMESPACE_DECL #include /**/ "ace/post.h" #endif /* TAO_DEFAULT_STUB_FACTORY_H_ */