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