blob: 4d1e786f94c75adc6c2e4e272bdd67b134b29fc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef ILOCKEDWAITINGFORPROCESS_H
#define ILOCKEDWAITINGFORPROCESS_H
class QString;
class ILockedWaitingForProcess
{
public:
virtual bool unlockForced() const = 0;
virtual void setProcessName(QString const &) = 0;
virtual void setProcessInformation(DWORD pid, const QString& name) = 0;
};
#endif // ILOCKEDWAITINGFORPROCESS_H
|