CycloBranch
cMultipleDatasetsTableProxyModel.h
Go to the documentation of this file.
1
7#ifndef _CMULTIPLEDATASETSTABLEPROXYMODEL_H
8#define _CMULTIPLEDATASETSTABLEPROXYMODEL_H
9
10#include <QString>
11#include <QVariant>
12#include <QSortFilterProxyModel>
13#include <QComboBox>
14#include <QLineEdit>
15#include "core/cParameters.h"
16
17
21class cMultipleDatasetsTableProxyModel : public QSortFilterProxyModel {
22
23 Q_OBJECT
24
25public:
26
31 cMultipleDatasetsTableProxyModel(QObject *parent = 0);
32
33protected:
34
41 bool lessThan(const QModelIndex &left, const QModelIndex &right) const Q_DECL_OVERRIDE;
42
43};
44
45
46#endif
47
Definitions of program parameters.
A table proxy model.
Definition: cMultipleDatasetsTableProxyModel.h:21
cMultipleDatasetsTableProxyModel(QObject *parent=0)
The constructor.
Definition: cMultipleDatasetsTableProxyModel.cpp:4
bool lessThan(const QModelIndex &left, const QModelIndex &right) const Q_DECL_OVERRIDE
Reimplementation of lessThan.
Definition: cMultipleDatasetsTableProxyModel.cpp:9