|
reSIProcate/DialogUsageManager
9694
|


Public Member Functions | |
| NotifyTimer (BasicClientUserAgent &userAgent, unsigned int timerId) | |
| NotifyTimer (const NotifyTimer &rhs) | |
| ~NotifyTimer () | |
| void | executeCommand () |
| resip::Message * | clone () const |
| EncodeStream & | encode (EncodeStream &strm) const |
| EncodeStream & | encodeBrief (EncodeStream &strm) const |
Private Attributes | |
| BasicClientUserAgent & | mUserAgent |
| unsigned int | mTimerId |
Definition at line 94 of file basicClientUserAgent.cxx.
| resip::NotifyTimer::NotifyTimer | ( | BasicClientUserAgent & | userAgent, |
| unsigned int | timerId | ||
| ) | [inline] |
Definition at line 97 of file basicClientUserAgent.cxx.
: mUserAgent(userAgent), mTimerId(timerId) {}
| resip::NotifyTimer::NotifyTimer | ( | const NotifyTimer & | rhs | ) | [inline] |
Definition at line 98 of file basicClientUserAgent.cxx.
: mUserAgent(rhs.mUserAgent), mTimerId(rhs.mTimerId) {}
| resip::NotifyTimer::~NotifyTimer | ( | ) | [inline] |
Definition at line 99 of file basicClientUserAgent.cxx.
{}
| resip::Message* resip::NotifyTimer::clone | ( | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 103 of file basicClientUserAgent.cxx.
{ return new NotifyTimer(*this); }
| EncodeStream& resip::NotifyTimer::encode | ( | EncodeStream & | strm | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 104 of file basicClientUserAgent.cxx.
References EncodeStream.
{ strm << "NotifyTimer: id=" << mTimerId; return strm; }
| EncodeStream& resip::NotifyTimer::encodeBrief | ( | EncodeStream & | strm | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 105 of file basicClientUserAgent.cxx.
References EncodeStream.
{ return encode(strm); }
| void resip::NotifyTimer::executeCommand | ( | ) | [inline, virtual] |
Implements resip::DumCommand.
Definition at line 101 of file basicClientUserAgent.cxx.
unsigned int resip::NotifyTimer::mTimerId [private] |
Definition at line 109 of file basicClientUserAgent.cxx.
Definition at line 108 of file basicClientUserAgent.cxx.
1.7.5.1