#include <CodecFactory.h>


Public Member Functions | |
| virtual CORBA::Object_ptr | create_object (CORBA::ORB_ptr orb, int argc, ACE_TCHAR *argv[]) |
| Creates a Codec factory and returns it. | |
Static Public Member Functions | |
| static int | Initializer (void) |
| Used to force the initialization of the ORB code. | |
Definition at line 34 of file CodecFactory.h.
| CORBA::Object_ptr TAO_CodecFactory_Loader::create_object | ( | CORBA::ORB_ptr | orb, | |
| int | argc, | |||
| ACE_TCHAR * | argv[] | |||
| ) | [virtual] |
Creates a Codec factory and returns it.
Implements TAO_Object_Loader.
Definition at line 24 of file CodecFactory.cpp.
{
CORBA::Object_ptr obj = CORBA::Object_ptr ();
ACE_NEW_RETURN (obj,
TAO_CodecFactory (orb->orb_core ()),
CORBA::Object::_nil ());
return obj;
}
| int TAO_CodecFactory_Loader::Initializer | ( | void | ) | [static] |
Used to force the initialization of the ORB code.
Definition at line 34 of file CodecFactory.cpp.
{
return ACE_Service_Config::process_directive (ace_svc_desc_TAO_CodecFactory_Loader);
}
1.7.0