#include <DynamicAny.h>
Inheritance diagram for TAO_DynamicAny_Loader:
Public Member Functions | |
TAO_DynamicAny_Loader (void) | |
Constructor. | |
virtual CORBA::Object_ptr | create_object (CORBA::ORB_ptr orb, int argc, ACE_TCHAR *argv[]) throw (CORBA::SystemException) |
Creates a DynamicAny factory and returns it. | |
Static Public Member Functions | |
int | Initializer (void) |
Used to force the initialization of the ORB code. |
|
Constructor.
Definition at line 19 of file DynamicAny.cpp.
00020 { 00021 } |
|
Creates a DynamicAny factory and returns it.
Implements TAO_Object_Loader. Definition at line 24 of file DynamicAny.cpp. References ACE_NEW_RETURN.
00029 { 00030 CORBA::Object_ptr obj; 00031 ACE_NEW_RETURN (obj, 00032 TAO_DynAnyFactory, 00033 CORBA::Object::_nil ()); 00034 return obj; 00035 } |
|
Used to force the initialization of the ORB code.
Definition at line 38 of file DynamicAny.cpp. References ACE_Service_Config::process_directive().
00039 { 00040 return ACE_Service_Config::process_directive (ace_svc_desc_TAO_DynamicAny_Loader); 00041 } |