Create an instance of TypeCodeFactory and return it to the caller. More...
#include <TypeCodeFactory_Loader.h>
Public Member Functions | |
TAO_TypeCodeFactory_Loader (void) | |
Constructor. | |
virtual CORBA::Object_ptr | create_object (CORBA::ORB_ptr orb, int argc, ACE_TCHAR *argv[]) |
Static Public Member Functions | |
static int | Initializer (void) |
Used to force the initialization of the ORB code. |
Create an instance of TypeCodeFactory and return it to the caller.
Definition at line 33 of file TypeCodeFactory_Loader.h.
TAO_TypeCodeFactory_Loader::TAO_TypeCodeFactory_Loader | ( | void | ) |
CORBA::Object_ptr TAO_TypeCodeFactory_Loader::create_object | ( | CORBA::ORB_ptr | orb, | |
int | argc, | |||
ACE_TCHAR * | argv[] | |||
) | [virtual] |
Overload the base class method to create a new instance of a TypeCodeFactory object.
Implements TAO_Object_Loader.
Definition at line 30 of file TypeCodeFactory_Loader.cpp.
{ CORBA::Object_ptr obj; ACE_NEW_RETURN (obj, TAO_TypeCodeFactory_i, CORBA::Object::_nil ()); return obj; }
int TAO_TypeCodeFactory_Loader::Initializer | ( | void | ) | [static] |
Used to force the initialization of the ORB code.
Definition at line 40 of file TypeCodeFactory_Loader.cpp.
{ return ACE_Service_Config::process_directive (ace_svc_desc_TAO_TypeCodeFactory_Loader); }