00001 //--------------------------------------------------------------- 00002 // Go4 Release Package v2.10-5 (build 21005) 00003 // 03-Nov-2005 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at DVEE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 #include "TGo4TaskHandlerCommandList.h" 00017 00018 #include "Go4CommandsTaskHandler.h" 00019 #include "Go4Log/TGo4Log.h" 00020 00021 TGo4TaskHandlerCommandList::TGo4TaskHandlerCommandList(const char* name) : 00022 TGo4CommandProtoList(name) 00023 { 00024 // all valid TaskHandler commands should be added to prototype list... 00025 AddCommand (new TGo4ComQuit); 00026 AddCommand (new TGo4ComMasterQuit); 00027 AddCommand (new TGo4ComStart); 00028 AddCommand (new TGo4ComStop); 00029 AddCommand (new TGo4ComConnectSlave); 00030 AddCommand (new TGo4ComDisconnectSlave); 00031 AddCommand (new TGo4ComRelaunch); 00032 AddCommand (new TGo4ComGetStatus); 00033 AddCommand (new TGo4ComFlush); 00034 AddCommand (new TGo4ComServerQuit); 00035 AddCommand (new TGo4ComRemoveClient); 00036 AddCommand (new TGo4ComLaunchClient); 00037 AddCommand (new TGo4ComExecLine); 00038 } 00039 00040 TGo4TaskHandlerCommandList::~TGo4TaskHandlerCommandList() 00041 { 00042 } 00043 00044 ClassImp(TGo4TaskHandlerCommandList) 00045 00046 //----------------------------END OF GO4 SOURCE FILE ---------------------