mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-20 11:48:35 -06:00
21 lines
269 B
C++
21 lines
269 B
C++
#include <qmainwindow.h>
|
|
|
|
class Plot;
|
|
class Panel;
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow( QWidget *parent = 0 );
|
|
|
|
private Q_SLOTS:
|
|
void updatePlot();
|
|
void updatePanel();
|
|
|
|
private:
|
|
Plot *d_plot;
|
|
Panel *d_panel;
|
|
};
|