#ifndef FILESYSTEMMODEL_H #define FILESYSTEMMODEL_H #include #include class FileSystemModel : public QFileSystemModel { public: FileSystemModel(QObject* parent=0); ~FileSystemModel(); Qt::DropActions supportedDropActions() const; Qt::ItemFlags flags(const QModelIndex &index) const; }; #endif // FILESYSTEMMODEL_H