mirror of
https://github.com/itay-grudev/SingleApplication.git
synced 2024-11-16 04:35:44 +08:00
10 lines
167 B
C++
Executable File
10 lines
167 B
C++
Executable File
#include <SingleApplication.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// Allow secondary instances
|
|
SingleApplication app( argc, argv );
|
|
|
|
return app.exec();
|
|
}
|