blob: 20c041f021067cf7346137edafc384f66e6ed345 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef COLLECTIONFOLDERSVIEW_H
#define COLLECTIONFOLDERSVIEW_H
#include "collectionwidget.h"
class CollectionFoldersView : public CollectionWidget {
public:
CollectionFoldersView(QWidget *parent = nullptr);
public slots:
virtual void populate();
virtual void readSettings();
private:
QString mCurrentFolder;
};
#endif // COLLECTIONFOLDERSVIEW_H
|