diff options
Diffstat (limited to 'filesystemfileproxy.h')
-rw-r--r-- | filesystemfileproxy.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/filesystemfileproxy.h b/filesystemfileproxy.h new file mode 100644 index 0000000..cb32a77 --- /dev/null +++ b/filesystemfileproxy.h @@ -0,0 +1,24 @@ +/* + 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 FILESYSTEMFILEPROXY_H +#define FILESYSTEMFILEPROXY_H + +#include <QSortFilterProxyModel> + +class QModelIndex; +class QVariant; + +class FilesystemFileProxy : public QSortFilterProxyModel { + Q_OBJECT + public: + FilesystemFileProxy(QObject *parent = 0); + ~FilesystemFileProxy() {}; +}; + +#endif + |