mirror of
https://github.com/itay-grudev/SingleApplication.git
synced 2025-01-15 17:02:06 +08:00
26 lines
582 B
C++
26 lines
582 B
C++
|
#include <SingleApplication.h>
|
||
|
#include "messagereceiver.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
// Allow secondary instances
|
||
|
SingleApplication app( argc, argv, true );
|
||
|
|
||
|
MessageReceiver msgReceiver;
|
||
|
|
||
|
// If this is a secondary instance
|
||
|
if( app.isSecondary() ) {
|
||
|
app.sendMessage( app.arguments().join(' ').toUtf8() );
|
||
|
return 0;
|
||
|
} else {
|
||
|
QObject::connect(
|
||
|
&app,
|
||
|
&SingleApplication::receivedMessage,
|
||
|
&msgReceiver,
|
||
|
&MessageReceiver::receivedMessage
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return app.exec();
|
||
|
}
|