mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-03 20:20:48 -06:00
16 lines
266 B
C++
16 lines
266 B
C++
|
|
||
|
#include "MainWindow.h"
|
||
|
|
||
|
#include <QApplication>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication app(argc, argv);
|
||
|
|
||
|
MainWindow window;
|
||
|
window.setWindowTitle("Ceetron Application Framework Test Application");
|
||
|
window.show();
|
||
|
|
||
|
return app.exec();
|
||
|
}
|