##// END OF EJS Templates
Fixed bug 388...
Fixed bug 388 Added cassini FGM download from Time table files. Fixed smal issue on export function. Some Work on QLop database.

File last commit:

r14:0e9217f77498 default
r14:0e9217f77498 default
Show More
qlopdatabaseviewermodel.h
27 lines | 778 B | text/x-c | CLexer
/ src / Core / Widgets / qlopdatabaseviewermodel.h
Spec file ready for rpm packaging....
r13 #ifndef QLOPDATABASEVIEWERMODEL_H
#define QLOPDATABASEVIEWERMODEL_H
#include <QObject>
#include <QAbstractTableModel>
#include <qlopdatabase.h>
class QLopDataBaseViewerModel : public QAbstractTableModel
{
Fixed bug #388...
r14 Q_OBJECT
Spec file ready for rpm packaging....
r13 public:
QLopDataBaseViewerModel(QObject *parent=0);
~QLopDataBaseViewerModel();
int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
int columnCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
Fixed bug #388...
r14 public slots:
void DBChanged();
Spec file ready for rpm packaging....
r13 private:
};
#endif // QLOPDATABASEVIEWERMODEL_H