-
Dipl.-Ing. Jonas Stienen authoredDipl.-Ing. Jonas Stienen authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
main.cpp 980 B
/*
* --------------------------------------------------------------------------------------------
*
* VVV VVV A Virtual Acoustics (VA) | http://www.virtualacoustics.org
* VVV VVV AAA Licensed under the Apache License, Version 2.0
* VVV VVV AAA
* VVV VVV AAA Copyright 2015-2017
* VVVVVV AAA Institute of Technical Acoustics (ITA)
* VVVV AAA RWTH Aachen University
*
* --------------------------------------------------------------------------------------------
*/
#include <QApplication>
#include "RedstartWindow.h"
int main( int argc, char* argv[] )
{
// Qt app
QApplication a( argc, argv );
a.setOrganizationName( "Institute of Technical Acoustics (ITA)" );
a.setOrganizationDomain( "akustik.rwth-aachen.de" );
a.setApplicationName( "Redstart" );
a.setApplicationDisplayName( "Redstart VA GUI" );
RedstartWindow w;
w.show();
return a.exec();
};