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