TAO
2.0.8
|
Base class for creating instances of the codeset manager. More...
#include <Codeset_Manager_Factory_Base.h>
Public Member Functions | |
virtual | ~TAO_Codeset_Manager_Factory_Base () |
virtual TAO_Codeset_Manager * | create (void) |
virtual bool | is_default (void) const |
Static Public Member Functions | |
static int | initialize (void) |
Static initializer ensures the factory is loaded. |
Base class for creating instances of the codeset manager.
The base also provides a default implementation which instantiates nothing. This default impl is replaced by the actual implementation if libTAO_Codeset is loaded.
TAO_Codeset_Manager_Factory_Base::~TAO_Codeset_Manager_Factory_Base | ( | void | ) | [virtual] |
TAO_Codeset_Manager * TAO_Codeset_Manager_Factory_Base::create | ( | void | ) | [virtual] |
Create makes a new instance of the codeset manager for every call. This allows multiple ORBs to have their own (or none). This default implementation returns a null pointer only.
int TAO_Codeset_Manager_Factory_Base::initialize | ( | void | ) | [static] |
Static initializer ensures the factory is loaded.
bool TAO_Codeset_Manager_Factory_Base::is_default | ( | void | ) | const [virtual] |
Is_default is called by the ORB Core to determine if it needs to reload the factory with a dynamically linked libTAO_Codeset. Statically linked applications get derive implementation by including "tao/Codeset/Codeset.h" somewhere in their source code.