#include <Policy.h>
Public Member Functions | |
TAO_AV_SSRC_Policy (CORBA::ULong ssrc=0) | |
CORBA::ULong | value (void) |
void | value (CORBA::ULong ssrc) |
Protected Attributes | |
CORBA::ULong | ssrc_ |
Definition at line 64 of file Policy.h.
TAO_AV_SSRC_Policy::TAO_AV_SSRC_Policy | ( | CORBA::ULong | ssrc = 0 |
) |
Definition at line 18 of file Policy.cpp.
:TAO_AV_Policy (TAO_AV_SSRC_POLICY), ssrc_ (ssrc) { }
CORBA::ULong TAO_AV_SSRC_Policy::value | ( | void | ) |
Definition at line 22 of file Policy.inl.
{ return this->ssrc_; }
void TAO_AV_SSRC_Policy::value | ( | CORBA::ULong | ssrc | ) |
Definition at line 29 of file Policy.inl.
{ this->ssrc_ = ssrc; }
CORBA::ULong TAO_AV_SSRC_Policy::ssrc_ [protected] |