Переделана структура проекта

This commit is contained in:
2020-06-30 20:04:26 +03:00
parent cf52aba9a3
commit 6358fe0820
32 changed files with 315 additions and 135 deletions

View File

@@ -15,7 +15,7 @@ int main( int argc, char* argv[] )
sigwatch.watchForSignal( SIGTERM );
QObject::connect( &sigwatch, &MQ::PosixSignalWatcher::posixSignal, &app, &QCoreApplication::quit );
int exitcode = app.exec();
int exitcode = QCoreApplication::exec();
qDebug() << "Goodbye";
return( exitcode );
}