mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
17 lines
296 B
C++
17 lines
296 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.resize(1000, 810);
|
|
window.show();
|
|
|
|
return app.exec();
|
|
}
|