|
reSIProcate/DialogUsageManager
9694
|


Public Member Functions | |
| InviteSessionReferCommand (InviteSession &inviteSession, const NameAddr &referTo, bool referSub) | |
| virtual void | executeCommand () |
| virtual EncodeStream & | encodeBrief (EncodeStream &strm) const |
Private Attributes | |
| InviteSession & | mInviteSession |
| NameAddr | mReferTo |
| bool | mReferSub |
Definition at line 887 of file InviteSession.cxx.
| InviteSessionReferCommand::InviteSessionReferCommand | ( | InviteSession & | inviteSession, |
| const NameAddr & | referTo, | ||
| bool | referSub | ||
| ) | [inline] |
Definition at line 890 of file InviteSession.cxx.
: mInviteSession(inviteSession), mReferTo(referTo), mReferSub(referSub) { }
| virtual EncodeStream& InviteSessionReferCommand::encodeBrief | ( | EncodeStream & | strm | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 903 of file InviteSession.cxx.
References EncodeStream.
{
return strm << "InviteSessionReferCommand";
}
| virtual void InviteSessionReferCommand::executeCommand | ( | ) | [inline, virtual] |
Implements resip::DumCommand.
Definition at line 898 of file InviteSession.cxx.
{
mInviteSession.refer(mReferTo, mReferSub);
}
Definition at line 909 of file InviteSession.cxx.
bool InviteSessionReferCommand::mReferSub [private] |
Definition at line 911 of file InviteSession.cxx.
NameAddr InviteSessionReferCommand::mReferTo [private] |
Definition at line 910 of file InviteSession.cxx.
1.7.5.1