/***********************************************************************/ /* Open Visualization Data Explorer */ /* (C) Copyright IBM Corp. 1989,1999 */ /* ALL RIGHTS RESERVED */ /* This code licensed under the */ /* "IBM PUBLIC LICENSE - Open Visualization Data Explorer" */ /***********************************************************************/ #include #include "QuitCommand.h" #include "Application.h" QuitCommand::QuitCommand(Application* app, const char* name, CommandScope* scope, boolean active, char* dialogTitle, char* dialogQuestion) : ConfirmedCommand(name, scope, active, dialogTitle, dialogQuestion) { // // No op. // this->application = app; } boolean QuitCommand::doIt(CommandInterface *ci) { // // Terminate the application // application->shutdownApplication(); return TRUE; }