diff -r dfefb6003498 -r c55e1f2a4db4 mainwindow.h --- 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_; + };