mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 15:26:48 -06:00
23 lines
324 B
C
23 lines
324 B
C
|
#include <qmainwindow.h>
|
||
|
|
||
|
class Canvas;
|
||
|
class QPainterPath;
|
||
|
|
||
|
class MainWindow: public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
MainWindow();
|
||
|
virtual ~MainWindow();
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void loadSVG();
|
||
|
|
||
|
private:
|
||
|
void loadSVG( const QString & );
|
||
|
void loadPath( const QPainterPath & );
|
||
|
|
||
|
Canvas *d_canvas[2];
|
||
|
};
|