#include <Protocol.h>
Inheritance diagram for ACE_RMCast::NoData:
Public Member Functions | |
NoData (Header const &h, istream &) | |
NoData () | |
NoData_ptr | clone () |
virtual void | serialize_body (ostream &) const |
virtual void | serialize_body (sstream &) const |
Static Public Attributes | |
static u16 const | id = 0x0007 |
Protected Member Functions | |
virtual Profile_ptr | clone_ () |
NoData (NoData const &no_data) |
Definition at line 1128 of file Protocol.h.
ACE_RMCast::NoData::NoData | ( | Header const & | h, | |
istream & | ||||
) | [inline] |
ACE_RMCast::NoData::NoData | ( | ) | [inline] |
Definition at line 1138 of file Protocol.h.
References ACE_RMCast::Profile::size().
01139 : Profile (id) 01140 { 01141 Profile::size (0); 01142 }
ACE_RMCast::NoData::NoData | ( | NoData const & | no_data | ) | [inline, protected] |
NoData_ptr ACE_RMCast::NoData::clone | ( | void | ) | [inline] |
Reimplemented from ACE_RMCast::Profile.
Definition at line 1145 of file Protocol.h.
References clone_().
01146 { 01147 return NoData_ptr (clone_ ()); 01148 }
virtual Profile_ptr ACE_RMCast::NoData::clone_ | ( | ) | [inline, protected, virtual] |
Implements ACE_RMCast::Profile.
Definition at line 1152 of file Protocol.h.
Referenced by clone().
01153 { 01154 Profile_ptr p (new NoData (*this)); 01155 return p; 01156 }
virtual void ACE_RMCast::NoData::serialize_body | ( | sstream & | ) | const [inline, virtual] |
virtual void ACE_RMCast::NoData::serialize_body | ( | ostream & | ) | const [inline, virtual] |
u16 const ACE_RMCast::NoData::id = 0x0007 [static] |
Definition at line 1130 of file Protocol.h.