00001 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef TDSPGROUP_H 00019 #define TDSPGROUP_H 00020 00021 #include <TList.h> 00022 #include <TDSPOperator.h> 00023 #include <TQQGControl.h> 00024 00029 class TDSPGroup : public TDSPOperator { 00030 00031 TList *fListOfOperators; 00032 00033 public: 00034 TDSPGroup(char *name = NULL); 00035 ~TDSPGroup(); 00036 00037 TList *GetListOfOperators() { return fListOfOperators; }; 00038 void Add(TDSPOperator*o) { fListOfOperators->Add(o); Update(); }; 00039 void Remove(TDSPOperator*o) { fListOfOperators->Remove(o);Update(); }; 00040 void Print(); 00041 00042 virtual TQQGControl* NewGControl(); 00043 00044 ClassDef(TDSPGroup,1) 00045 00046 }; 00047 00048 #endif
1.3.2