mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
65672d3dfb
fixes #141
31 lines
588 B
C++
31 lines
588 B
C++
#pragma once
|
|
|
|
//
|
|
// Taken from
|
|
// https://stackoverflow.com/questions/5006547/qt-best-practice-for-a-single-instance-app-protection
|
|
//
|
|
|
|
#include <QObject>
|
|
#include <QSharedMemory>
|
|
#include <QSystemSemaphore>
|
|
|
|
class RunGuard
|
|
{
|
|
public:
|
|
RunGuard(const QString &key);
|
|
~RunGuard();
|
|
|
|
bool isAnotherRunning();
|
|
bool tryToRun();
|
|
void release();
|
|
|
|
private:
|
|
const QString key;
|
|
const QString memLockKey;
|
|
const QString sharedmemKey;
|
|
|
|
QSharedMemory sharedMem;
|
|
QSystemSemaphore memLock;
|
|
|
|
Q_DISABLE_COPY(RunGuard)
|
|
};
|