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