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