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


Public Member Functions | |
| AppDialogSetEndCommand (const AppDialogSetHandle &dialogSet) | |
| virtual void | executeCommand () |
| virtual EncodeStream & | encodeBrief (EncodeStream &strm) const |
Private Attributes | |
| AppDialogSetHandle | mAppDialogSet |
Definition at line 43 of file AppDialogSet.hxx.
| resip::AppDialogSet::AppDialogSetEndCommand::AppDialogSetEndCommand | ( | const AppDialogSetHandle & | dialogSet | ) | [inline] |
Definition at line 46 of file AppDialogSet.hxx.
: mAppDialogSet(dialogSet) { }
| virtual EncodeStream& resip::AppDialogSet::AppDialogSetEndCommand::encodeBrief | ( | EncodeStream & | strm | ) | const [inline, virtual] |
Implements resip::Message.
Definition at line 59 of file AppDialogSet.hxx.
References EncodeStream.
{
return strm << "AppDialogSetEndCommand";
}
| virtual void resip::AppDialogSet::AppDialogSetEndCommand::executeCommand | ( | ) | [inline, virtual] |
Implements resip::DumCommand.
Definition at line 51 of file AppDialogSet.hxx.
References resip::Handle< T >::isValid(), and mAppDialogSet.
{
if(mAppDialogSet.isValid())
{
mAppDialogSet->end();
}
}

Definition at line 64 of file AppDialogSet.hxx.
Referenced by executeCommand().
1.7.5.1