Files
ResInsight/Fwk/AppFwk/cafTests/cafTestCvfApplication/Main.cpp
Magne Sjaastad 952e766c2f Update clang-format.yml (#10068)
* Update to clang-format-15
Removed two custom .clang-format files in subfolders of AppFwk

* Fixes by clang-format
2023-04-13 07:05:53 +02:00

16 lines
272 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();
}