#include <Policy.h>
Inheritance diagram for TAO_AV_SSRC_Policy:
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.
00019 :TAO_AV_Policy (TAO_AV_SSRC_POLICY), 00020 ssrc_ (ssrc) 00021 { 00022 }
ACE_INLINE void TAO_AV_SSRC_Policy::value | ( | CORBA::ULong | ssrc | ) |
Definition at line 29 of file Policy.inl.
References ssrc_.
00030 { 00031 this->ssrc_ = ssrc; 00032 }
ACE_INLINE CORBA::ULong TAO_AV_SSRC_Policy::value | ( | void | ) |
Definition at line 22 of file Policy.inl.
References ssrc_.
Referenced by TAO_AV_RTP_Object::set_policies().
00023 { 00024 return this->ssrc_; 00025 }
CORBA::ULong TAO_AV_SSRC_Policy::ssrc_ [protected] |