summaryrefslogtreecommitdiff
path: root/CIAO/examples/Display/NavDisplayGUI_exec/QuitCmd.cpp
blob: b4d39f660fe948102fbc15f82d4b5df51973fcf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "QuitCmd.h"
#include "RootPanel.h"

QuitCmd::QuitCmd()
{
}

QuitCmd *
QuitCmd::create(RootPanel *form)
{
  QuitCmd *cmd = new QuitCmd ();
  cmd->form_ = form;
  return cmd;
}

int
QuitCmd::execute (void * /* context */)
{
  return form_->close ();
}