##// END OF EJS Templates
Added preliminary version of FFT and removed memory leak.
Added preliminary version of FFT and removed memory leak.

File last commit:

r6:665de41c4c74 default
r9:f32891d6150c default
Show More
filesystemmodel.h
16 lines | 362 B | text/x-c | CLexer
#ifndef FILESYSTEMMODEL_H
#define FILESYSTEMMODEL_H
#include <QObject>
#include <QFileSystemModel>
class FileSystemModel : public QFileSystemModel
{
public:
FileSystemModel(QObject* parent=0);
~FileSystemModel();
Qt::DropActions supportedDropActions() const;
Qt::ItemFlags flags(const QModelIndex &index) const;
};
#endif // FILESYSTEMMODEL_H