#include <Transport.h>
Public Member Functions | |
TAO_AV_Transport_Item (const ACE_CString &name) | |
const ACE_CString & | name (void) |
TAO_AV_Transport_Factory * | factory (void) |
Return a pointer to the Transport factory. | |
void | factory (TAO_AV_Transport_Factory *factory) |
Set the factory pointer's valus. | |
Private Attributes | |
ACE_CString | name_ |
Transport factory name. | |
TAO_AV_Transport_Factory * | factory_ |
Pointer to factory object. |
Definition at line 46 of file Transport.h.
TAO_AV_Transport_Item::TAO_AV_Transport_Item | ( | const ACE_CString & | name | ) |
Creator method, the Transport name can only be set when the object is created.
Definition at line 31 of file Transport.cpp.
TAO_AV_Transport_Factory * TAO_AV_Transport_Item::factory | ( | void | ) |
Return a pointer to the Transport factory.
Definition at line 19 of file Transport.inl.
{ return this->factory_; }
void TAO_AV_Transport_Item::factory | ( | TAO_AV_Transport_Factory * | factory | ) |
Set the factory pointer's valus.
Definition at line 26 of file Transport.inl.
{ this->factory_ = factory; }
const ACE_CString & TAO_AV_Transport_Item::name | ( | void | ) |
Return a reference to the character representation of the Transport factories name.
Definition at line 12 of file Transport.inl.
{ return this->name_; }
Pointer to factory object.
Definition at line 68 of file Transport.h.
ACE_CString TAO_AV_Transport_Item::name_ [private] |
Transport factory name.
Definition at line 65 of file Transport.h.