#include <Table_Adapter.h>


Public Member Functions | |
| TAO_Table_Adapter_Factory (void) | |
| Constructor. | |
| virtual TAO_Adapter * | create (TAO_ORB_Core *orb_core) |
| Create a new adapter. | |
Definition at line 81 of file Table_Adapter.h.
| TAO_Table_Adapter_Factory::TAO_Table_Adapter_Factory | ( | void | ) |
| TAO_Adapter * TAO_Table_Adapter_Factory::create | ( | TAO_ORB_Core * | orb_core | ) | [virtual] |
Create a new adapter.
Implements TAO_Adapter_Factory.
Definition at line 220 of file Table_Adapter.cpp.
{
TAO_Adapter* ptr = 0;
ACE_NEW_RETURN (ptr,
TAO_Table_Adapter (*oc),
0);
return ptr;
}
1.7.0