16 lines
228 B
C++
16 lines
228 B
C++
#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;
|
|
};
|