#include <IORManip_Loader.h>
Inheritance diagram for TAO_IORManip_Loader:
Public Member Functions | |
TAO_IORManip_Loader (void) | |
Constructor. | |
virtual CORBA::Object_ptr | create_object (CORBA::ORB_ptr orb, int argc, ACE_TCHAR *argv[]) |
Creates a IORManip factory and returns it. | |
Static Public Member Functions | |
int | Initializer (void) |
Used to force the initialization of the ORB code. |
|
Constructor.
Definition at line 14 of file IORManip_Loader.cpp.
00015 { 00016 } |
|
Creates a IORManip factory and returns it.
Implements TAO_Object_Loader. Definition at line 19 of file IORManip_Loader.cpp. References ACE_NEW_RETURN.
00022 { 00023 CORBA::Object_ptr obj; 00024 ACE_NEW_RETURN (obj, 00025 TAO_IOR_Manipulation_impl, 00026 CORBA::Object::_nil ()); 00027 return obj; 00028 } |
|
Used to force the initialization of the ORB code.
Definition at line 31 of file IORManip_Loader.cpp. References ACE_Service_Config::process_directive().
00032 { 00033 return ACE_Service_Config::process_directive (ace_svc_desc_TAO_IORManip_Loader); 00034 } |