#include <RT_Stub_Factory.h>


Public Member Functions | |
| virtual | ~TAO_RT_Stub_Factory (void) |
| virtual TAO_Stub * | create_stub (const char *repository_id, const TAO_MProfile &profiles, TAO_ORB_Core *orb_core) |
| Creates a Stub Object. | |
This class is a factory whose product is the TAO_RT_Stub used by TAO. This factory, or one of its subclasses is dynamically plugged into the ORB_Core, and is used by the ORB_Core to create Stub Objects.
Definition at line 47 of file RT_Stub_Factory.h.
| TAO_RT_Stub_Factory::~TAO_RT_Stub_Factory | ( | void | ) | [virtual] |
Definition at line 21 of file RT_Stub_Factory.cpp.
{
}
| TAO_Stub * TAO_RT_Stub_Factory::create_stub | ( | const char * | repository_id, | |
| const TAO_MProfile & | profiles, | |||
| TAO_ORB_Core * | orb_core | |||
| ) | [virtual] |
Creates a Stub Object.
Implements TAO_Stub_Factory.
Definition at line 26 of file RT_Stub_Factory.cpp.
{
TAO_Stub *retval = 0;
ACE_NEW_THROW_EX (retval,
TAO_RT_Stub (repository_id, profiles, orb_core),
CORBA::NO_MEMORY (TAO::VMCID,
CORBA::COMPLETED_MAYBE));
return retval;
}
1.7.0