changeset 28 | c55e1f2a4db4 |
parent 27 | dfefb6003498 |
child 30 | 00268973aae0 |
--- a/mainwindow.h Sun Jan 29 00:38:40 2012 +0100 +++ b/mainwindow.h Sun Jan 29 01:51:02 2012 +0100 @@ -12,23 +12,27 @@ class MainWindow : public QMainWindow { Q_OBJECT + public: MainWindow(QWidget *parent = 0); ~MainWindow(); + public slots: void open(const QString& = ""); + private: + void showProfile(); + void showInfo(); Ui::MainWindow *ui_; + QFile currentFile_; QTextStream input_; - IGC igc_; -#ifdef MYPLOT - Plot *myplot_; -#endif + IGC *igc_; QwtPlot *plot_; + };