00001 #ifndef TIMESERIES 00002 #define TIMESERIES 00003 00004 #include "ui_timeseries.h" 00005 00006 class timeSeriesDlg : public QDialog, private Ui::timeSeriesDialog 00007 { 00008 Q_OBJECT 00009 00010 public: 00011 timeSeriesDlg(); 00012 00013 public slots: 00014 void browse(); 00015 void plot(); 00016 void savePlot(); 00017 void help(); 00018 00019 }; 00020 00021 #endif