#include <Transport.h>
Collaboration diagram for TAO_AV_Transport_Item:
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. |
|
creator method, the Transport name can only be set when the object is created. Definition at line 31 of file Transport.cpp.
|
|
set the factory pointer's valus.
Definition at line 26 of file Transport.i.
00027 { 00028 this->factory_ = factory; 00029 } |
|
return a pointer to the Transport factory.
Definition at line 19 of file Transport.i. Referenced by TAO_AV_Core::load_default_transport_factories().
00020 { 00021 return this->factory_; 00022 } |
|
return a reference to the character representation of the Transport factories name. Definition at line 12 of file Transport.i.
00013 { 00014 return this->name_; 00015 } |
|
pointer to factory object.
Definition at line 68 of file Transport.h. |
|
Transport factory name.
Definition at line 65 of file Transport.h. |