#include <Protocol.h>
Public Member Functions | |
From (Header const &h, istream &is) | |
From (Address const &addr) | |
From_ptr | clone () |
Address const & | address () const |
virtual void | serialize_body (ostream &os) const |
virtual void | serialize_body (sstream &ss) const |
Static Public Attributes | |
static u16 const | id = 0x0001 |
Protected Member Functions | |
virtual Profile_ptr | clone_ () |
From (From const &from) | |
Private Attributes | |
Address | address_ |
Definition at line 381 of file Protocol.h.
ACE_RMCast::From::From | ( | Address const & | addr | ) | [inline] |
Definition at line 398 of file Protocol.h.
: Profile (id), address_ (addr) { size (calculate_size ()); }
ACE_RMCast::From::From | ( | From const & | from | ) | [inline, protected] |
Definition at line 418 of file Protocol.h.
Address const& ACE_RMCast::From::address | ( | void | ) | const [inline] |
Definition at line 426 of file Protocol.h.
{ return address_; }
From_ptr ACE_RMCast::From::clone | ( | void | ) | [inline] |
Reimplemented from ACE_RMCast::Profile.
Definition at line 405 of file Protocol.h.
virtual Profile_ptr ACE_RMCast::From::clone_ | ( | ) | [inline, protected, virtual] |
Implements ACE_RMCast::Profile.
Definition at line 412 of file Protocol.h.
{ Profile_ptr p (new From (*this)); return p; }
virtual void ACE_RMCast::From::serialize_body | ( | sstream & | ss | ) | const [inline, virtual] |
Implements ACE_RMCast::Profile.
Definition at line 443 of file Protocol.h.
virtual void ACE_RMCast::From::serialize_body | ( | ostream & | os | ) | const [inline, virtual] |
Implements ACE_RMCast::Profile.
Definition at line 433 of file Protocol.h.
Address ACE_RMCast::From::address_ [private] |
Definition at line 453 of file Protocol.h.
u16 const ACE_RMCast::From::id = 0x0001 [static] |
Definition at line 383 of file Protocol.h.