// $Id$ //----------------------------------------------------------------------- // The GSI Online Offline Object Oriented (Go4) Project // Experiment Data Processing at EE department, GSI //----------------------------------------------------------------------- // Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH // Planckstr. 1, 64291 Darmstadt, Germany // Contact: http://go4.gsi.de //----------------------------------------------------------------------- // This software can be used under the license agreements as stated // in Go4License.txt file which is part of the distribution. //----------------------------------------------------------------------- #ifndef TGO4COMMASTERQUIT_H #define TGO4COMMASTERQUIT_H #include "TGo4TaskHandlerCommand.h" /** * Master Command to quit (terminate) the master application. If master is in server mode, all slave clients * are shut down before master quits. If master is connected as client to a slave server, this command will not terminate the slave. * @author Joern Adamczewski * @since 17-03-2005 */ class TGo4ComMasterQuit : public TGo4TaskHandlerCommand { public: TGo4ComMasterQuit(); Int_t ExeCom() override; ClassDefOverride(TGo4ComMasterQuit,1); }; #endif //TGO4COMMASTERQUIT_H