mainwindow.h 228 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #include <qmainwindow.h> class Plot; class TransformPlot; class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow( QWidget *parent = 0 ); private: Plot *d_plot; TransformPlot *d_transformPlot; };