mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-14 20:33:05 +02:00
See : https://github.com/itay-grudev/SingleApplication git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5481 bfdf4180-ca20-0410-9c96-a3a8aa849046
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();
|
|
}
|