mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 23:13:39 -06:00
16 lines
233 B
C++
16 lines
233 B
C++
|
#include <qapplication.h>
|
||
|
#include "mainwindow.h"
|
||
|
|
||
|
int main( int argc, char **argv )
|
||
|
{
|
||
|
QApplication a( argc, argv );
|
||
|
|
||
|
MainWindow mainWindow;
|
||
|
|
||
|
mainWindow.resize( 800, 600 );
|
||
|
mainWindow.show();
|
||
|
|
||
|
return a.exec();
|
||
|
}
|
||
|
|