mirror of
https://github.com/itay-grudev/SingleApplication.git
synced 2024-11-15 20:25:43 +08:00
7e494b5d5e
Fixes #131
11 lines
179 B
C++
Executable File
11 lines
179 B
C++
Executable File
#include <singleapplication.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
SingleApplication app( argc, argv );
|
|
|
|
qWarning() << "Started a new instance";
|
|
|
|
return app.exec();
|
|
}
|