|
reSIProcate/DialogUsageManager
9694
|


Public Member Functions | |
| CallTimer (BasicClientUserAgent &userAgent, BasicClientCall *call) | |
| CallTimer (const CallTimer &rhs) | |
| ~CallTimer () | |
| void | executeCommand () |
| resip::Message * | clone () const |
| EncodeStream & | encode (EncodeStream &strm) const |
| EncodeStream & | encodeBrief (EncodeStream &strm) const |
Private Attributes | |
| BasicClientUserAgent & | mUserAgent |
| BasicClientCall * | mCall |
Definition at line 36 of file basicClientCall.cxx.
| resip::CallTimer::CallTimer | ( | BasicClientUserAgent & | userAgent, |
| BasicClientCall * | call | ||
| ) | [inline] |
Definition at line 39 of file basicClientCall.cxx.
: mUserAgent(userAgent), mCall(call) {}
| resip::CallTimer::CallTimer | ( | const CallTimer & | rhs | ) | [inline] |
Definition at line 40 of file basicClientCall.cxx.
: mUserAgent(rhs.mUserAgent), mCall(rhs.mCall) {}
| resip::CallTimer::~CallTimer | ( | ) | [inline] |
Definition at line 41 of file basicClientCall.cxx.
{}
| resip::Message* resip::CallTimer::clone | ( | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 45 of file basicClientCall.cxx.
{ return new CallTimer(*this); }
| EncodeStream& resip::CallTimer::encode | ( | EncodeStream & | strm | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 46 of file basicClientCall.cxx.
References EncodeStream.
{ strm << "CallTimer:"; return strm; }
| EncodeStream& resip::CallTimer::encodeBrief | ( | EncodeStream & | strm | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 47 of file basicClientCall.cxx.
References EncodeStream.
{ return encode(strm); }
| void resip::CallTimer::executeCommand | ( | ) | [inline, virtual] |
Implements resip::DumCommand.
Definition at line 43 of file basicClientCall.cxx.
{ mUserAgent.onCallTimeout(mCall); }
BasicClientCall* resip::CallTimer::mCall [private] |
Definition at line 51 of file basicClientCall.cxx.
BasicClientUserAgent& resip::CallTimer::mUserAgent [private] |
Definition at line 50 of file basicClientCall.cxx.
1.7.5.1