root/src/searchdirectory.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SEARCHDIRECTORY_H
#define SEARCHDIRECTORY_H

#include <QDir>

class SearchDirectory
{
public:
    SearchDirectory(QDir dir, bool enabled = true);

public:
    QDir dir;
    bool enabled;
};

#endif // SEARCHDIRECTORY_H