TAO_IORInterceptor_Adapter_Factory_Impl. More...
#include <IORInterceptor_Adapter_Factory_Impl.h>
Public Member Functions | |
virtual | ~TAO_IORInterceptor_Adapter_Factory_Impl (void) |
virtual TAO_IORInterceptor_Adapter * | create (void) |
Static Public Member Functions | |
static int | Initializer (void) |
TAO_IORInterceptor_Adapter_Factory_Impl.
Class that creates instances of TAO_IORInterceptor_Adapter (one per ORB). This is the derived class that contains the actual implementations.
Definition at line 40 of file IORInterceptor_Adapter_Factory_Impl.h.
TAO_IORInterceptor_Adapter_Factory_Impl::~TAO_IORInterceptor_Adapter_Factory_Impl | ( | void | ) | [virtual] |
Definition at line 15 of file IORInterceptor_Adapter_Factory_Impl.cpp.
{ }
TAO_IORInterceptor_Adapter * TAO_IORInterceptor_Adapter_Factory_Impl::create | ( | void | ) | [virtual] |
Implements TAO_IORInterceptor_Adapter_Factory.
Definition at line 20 of file IORInterceptor_Adapter_Factory_Impl.cpp.
{ TAO_IORInterceptor_Adapter_Impl *nia = 0; ACE_NEW_THROW_EX (nia, TAO_IORInterceptor_Adapter_Impl (), CORBA::NO_MEMORY ()); return nia; }
int TAO_IORInterceptor_Adapter_Factory_Impl::Initializer | ( | void | ) | [static] |
Definition at line 36 of file IORInterceptor_Adapter_Factory_Impl.cpp.
{ TAO_ORB_Core::iorinterceptor_adapter_factory_name ( "Concrete_IORInterceptor_Adapter_Factory"); return ACE_Service_Config::process_directive ( ace_svc_desc_TAO_IORInterceptor_Adapter_Factory_Impl); }