17 lines
207 B
C
17 lines
207 B
C
|
#ifndef BLOCKDIRS_H
|
||
|
#define BLOCKDIRS_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class BlockDirs : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit BlockDirs(QObject *parent = nullptr);
|
||
|
|
||
|
Q_SIGNALS:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // BLOCKDIRS_H
|