File indexing completed on 2025-07-06 04:09:29
0001 /*************************************************************************** 0002 * * 0003 * copyright : (C) 2007 The University of Toronto * 0004 * netterfield@astro.utoronto.ca * 0005 * * 0006 * This program is free software; you can redistribute it and/or modify * 0007 * it under the terms of the GNU General Public License as published by * 0008 * the Free Software Foundation; either version 2 of the License, or * 0009 * (at your option) any later version. * 0010 * * 0011 ***************************************************************************/ 0012 0013 #ifndef DATAGUI_H 0014 #define DATAGUI_H 0015 0016 #include "datacollection.h" 0017 0018 #include "kst_export.h" 0019 0020 namespace Kst { 0021 0022 class DataGui : public Data { 0023 public: 0024 DataGui(); 0025 virtual ~DataGui(); 0026 0027 virtual void removeCurveFromPlots(Relation *c); 0028 0029 virtual QList<PlotItemInterface*> plotList() const; 0030 0031 virtual int rows() const; 0032 0033 virtual int columns() const; 0034 }; 0035 0036 } 0037 0038 #endif 0039 0040 // vim: ts=2 sw=2 et