mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
* Update to clang-format-15 Removed two custom .clang-format files in subfolders of AppFwk * Fixes by clang-format
16 lines
272 B
C++
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();
|
|
}
|