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