|
reSIProcate/DialogUsageManager
9694
|
#include <UserAgent.hxx>


Public Member Functions | |
| EndInviteSessionCommand (InviteSessionHandle h) | |
| virtual void | executeCommand () |
| virtual Message * | clone () const |
| virtual EncodeStream & | encode (EncodeStream &str) const |
| virtual EncodeStream & | encodeBrief (EncodeStream &str) const |
Private Attributes | |
| InviteSessionHandle | mHandle |
Definition at line 93 of file UserAgent.hxx.
| resip::UserAgent::EndInviteSessionCommand::EndInviteSessionCommand | ( | InviteSessionHandle | h | ) | [inline] |
| virtual Message* resip::UserAgent::EndInviteSessionCommand::clone | ( | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 107 of file UserAgent.hxx.
References EndInviteSessionCommand(), and mHandle.
{
return new EndInviteSessionCommand(mHandle);
}

| virtual EncodeStream& resip::UserAgent::EndInviteSessionCommand::encode | ( | EncodeStream & | str | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 115 of file UserAgent.hxx.
References EncodeStream.
Referenced by encodeBrief().
{
return str << "EndInviteSessionCommand";
}
| virtual EncodeStream& resip::UserAgent::EndInviteSessionCommand::encodeBrief | ( | EncodeStream & | str | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 124 of file UserAgent.hxx.
References encode(), and EncodeStream.
{
return encode(str);
}

| virtual void resip::UserAgent::EndInviteSessionCommand::executeCommand | ( | ) | [inline, virtual] |
Implements resip::DumCommand.
Definition at line 99 of file UserAgent.hxx.
References resip::Handle< T >::isValid(), and mHandle.

Definition at line 131 of file UserAgent.hxx.
Referenced by clone(), and executeCommand().
1.7.5.1