##// END OF EJS Templates
added quick fileName generation for data export, and fixed wrong date reading...
added quick fileName generation for data export, and fixed wrong date reading on cassini data files.

File last commit:

r6:665de41c4c74 default
r10:63067c6877ba 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