#include <Transport.h>
Public Member Functions | |
TAO_AV_Flow_Protocol_Item (const ACE_CString &name) | |
const ACE_CString & | name (void) |
TAO_AV_Flow_Protocol_Factory * | factory (void) |
return a pointer to the Flow_Protocol factory. | |
void | factory (TAO_AV_Flow_Protocol_Factory *factory) |
set the factory pointer's valus. | |
Private Attributes | |
ACE_CString | name_ |
Flow_Protocol factory name. | |
TAO_AV_Flow_Protocol_Factory * | factory_ |
pointer to factory object. |
Definition at line 80 of file Transport.h.
TAO_AV_Flow_Protocol_Item::TAO_AV_Flow_Protocol_Item | ( | const ACE_CString & | name | ) |
creator method, the Flow_Protocol name can only be set when the object is created.
Definition at line 40 of file Transport.cpp.
TAO_AV_Flow_Protocol_Factory * TAO_AV_Flow_Protocol_Item::factory | ( | void | ) |
return a pointer to the Flow_Protocol factory.
Definition at line 44 of file Transport.inl.
{ return this->factory_; }
void TAO_AV_Flow_Protocol_Item::factory | ( | TAO_AV_Flow_Protocol_Factory * | factory | ) |
set the factory pointer's valus.
Definition at line 51 of file Transport.inl.
{ this->factory_ = factory; }
const ACE_CString & TAO_AV_Flow_Protocol_Item::name | ( | void | ) |
return a reference to the character representation of the Flow_Protocol factories name.
Definition at line 37 of file Transport.inl.
{ return this->name_; }
pointer to factory object.
Definition at line 102 of file Transport.h.
ACE_CString TAO_AV_Flow_Protocol_Item::name_ [private] |
Flow_Protocol factory name.
Definition at line 99 of file Transport.h.