#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[]) |
| Creates a DynamicAny factory and returns it. | |
Static Public Member Functions | |
| static int | Initializer (void) |
| Used to force the initialization of the ORB code. | |
Definition at line 33 of file DynamicAny.h.
| TAO_BEGIN_VERSIONED_NAMESPACE_DECL TAO_DynamicAny_Loader::TAO_DynamicAny_Loader | ( | void | ) |
| CORBA::Object_ptr TAO_DynamicAny_Loader::create_object | ( | CORBA::ORB_ptr | orb, | |
| int | argc, | |||
| ACE_TCHAR * | argv[] | |||
| ) | [virtual] |
Creates a DynamicAny factory and returns it.
Implements TAO_Object_Loader.
Definition at line 24 of file DynamicAny.cpp.
References CORBA::Object::_nil(), and ACE_NEW_RETURN.
00027 { 00028 CORBA::Object_ptr obj; 00029 ACE_NEW_RETURN (obj, 00030 TAO_DynAnyFactory, 00031 CORBA::Object::_nil ()); 00032 return obj; 00033 }
| int TAO_DynamicAny_Loader::Initializer | ( | void | ) | [static] |
Used to force the initialization of the ORB code.
Definition at line 36 of file DynamicAny.cpp.
References ACE_Service_Config::process_directive().
00037 { 00038 return ACE_Service_Config::process_directive (ace_svc_desc_TAO_DynamicAny_Loader); 00039 }
1.4.7