diff options
Diffstat (limited to 'archivetreeview.h')
-rw-r--r-- | archivetreeview.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/archivetreeview.h b/archivetreeview.h new file mode 100644 index 0000000..d03319b --- /dev/null +++ b/archivetreeview.h @@ -0,0 +1,31 @@ +/* + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version + 2 of the License, or (at your option) any later version. +*/ + +#ifndef ARCHIVETREEVIEW_H +#define ARCHIVETREEVIEW_H + +#include <QWidget> + +class SmUberModel; +class QTreeView; + +class ArchiveTreeView : public QWidget +{ + Q_OBJECT + public: + explicit ArchiveTreeView(QWidget *parent = 0); + + private: + //widgets + QTreeView *mSeriesView; + QTreeView *mFilesView; + + //models + SmUberModel *mUberModel; +}; + +#endif |