mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
14 lines
201 B
C++
14 lines
201 B
C++
#include <qapplication.h>
|
|
#include "plot.h"
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
QApplication a( argc, argv );
|
|
|
|
Plot plot;
|
|
plot.resize( 600, 400 );
|
|
plot.show();
|
|
|
|
return a.exec();
|
|
}
|