mainwindow.h 268 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 #include <qmainwindow.h> class Plot; class Panel; class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow( QWidget *parent = 0 ); private Q_SLOTS: void updatePlot(); void exportPlot(); private: Plot *d_plot; Panel *d_panel; };