#include <Default_Stub_Factory.h>
Inheritance diagram for TAO_Default_Stub_Factory:


Public Member Functions | |
| virtual | ~TAO_Default_Stub_Factory (void) |
| Destructor. | |
| virtual TAO_Stub * | create_stub (const char *repository_id, const TAO_MProfile &profiles, TAO_ORB_Core *orb_core) |
| Creates a Stub Object. | |
Definition at line 41 of file Default_Stub_Factory.h.
| TAO_BEGIN_VERSIONED_NAMESPACE_DECL TAO_Default_Stub_Factory::~TAO_Default_Stub_Factory | ( | void | ) | [virtual] |
| TAO_Stub * TAO_Default_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 21 of file Default_Stub_Factory.cpp.
References ACE_NEW_THROW_EX, and CORBA::COMPLETED_MAYBE.
00024 { 00025 TAO_Stub *retval = 0; 00026 00027 ACE_NEW_THROW_EX (retval, 00028 TAO_Stub (repository_id, profiles, orb_core), 00029 CORBA::NO_MEMORY (0, 00030 CORBA::COMPLETED_MAYBE)); 00031 00032 return retval; 00033 }
1.4.7