17 lines
208 B
C
17 lines
208 B
C
|
#ifndef DIRECTORY_H
|
||
|
#define DIRECTORY_H
|
||
|
|
||
|
#include <QList>
|
||
|
#include <QString>
|
||
|
|
||
|
class QSqlQuery;
|
||
|
|
||
|
struct Directory {
|
||
|
QString path;
|
||
|
int id;
|
||
|
};
|
||
|
|
||
|
typedef QList<Directory> DirectoryList;
|
||
|
|
||
|
#endif // DIRECTORY_H
|