Public Member Functions | Static Public Member Functions

TAO_IORInterceptor_Adapter_Factory_Impl Class Reference

TAO_IORInterceptor_Adapter_Factory_Impl. More...

#include <IORInterceptor_Adapter_Factory_Impl.h>

Inheritance diagram for TAO_IORInterceptor_Adapter_Factory_Impl:
Inheritance graph
[legend]
Collaboration diagram for TAO_IORInterceptor_Adapter_Factory_Impl:
Collaboration graph
[legend]

List of all members.

Public Member Functions

virtual ~TAO_IORInterceptor_Adapter_Factory_Impl (void)
virtual
TAO_IORInterceptor_Adapter
create (void)

Static Public Member Functions

static int Initializer (void)

Detailed Description

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.


Constructor & Destructor Documentation

TAO_IORInterceptor_Adapter_Factory_Impl::~TAO_IORInterceptor_Adapter_Factory_Impl ( void   )  [virtual]

Definition at line 15 of file IORInterceptor_Adapter_Factory_Impl.cpp.

{
}


Member Function Documentation

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);
}


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines