ViewSolutions
Loading...
Searching...
No Matches
variantlistmodel.h
Go to the documentation of this file.
1#ifndef VARIANTLISTMODEL_H
2#define VARIANTLISTMODEL_H
3
4#include "baselistmodel.h"
5
6
7namespace ViewSolutions {
8
12class VariantListModel: public BaseListModel<QVariant>
13{
14 Q_OBJECT
16
17public:
18 VariantListModel(QObject* ptr = nullptr): BaseListModel<QVariant>(ptr){};
19};
20
21}
22
23#endif // VARIANTLISTMODEL_H
#define BASE_LIST_MODEL_DATA_PROPERTY(Type)
The BaseListModel class is base class of all GUI list models.
The VariantListModel class is universal implementation for all atomic types.
VariantListModel(QObject *ptr=nullptr)
the ViewSolutions namespace