blob: 6a4267d42ed5c284417ed1c51d4d43296bdde28c (
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 unlockClicked() = 0;
virtual void setProcessName(QString const &) = 0;
};
#endif // ILOCKEDWAITINGFORPROCESS_H
|