summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/Display/NavDisplayGUI_exec/QuitCmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/examples/handcrafted/Display/NavDisplayGUI_exec/QuitCmd.cpp')
-rw-r--r--TAO/CIAO/examples/handcrafted/Display/NavDisplayGUI_exec/QuitCmd.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/TAO/CIAO/examples/handcrafted/Display/NavDisplayGUI_exec/QuitCmd.cpp b/TAO/CIAO/examples/handcrafted/Display/NavDisplayGUI_exec/QuitCmd.cpp
deleted file mode 100644
index b8495973ead..00000000000
--- a/TAO/CIAO/examples/handcrafted/Display/NavDisplayGUI_exec/QuitCmd.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-// $Id$
-
-#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();
-}