X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=HomeScreenNG%2Fstatusbarmodel.h;fp=HomeScreenNG%2Fstatusbarmodel.h;h=0000000000000000000000000000000000000000;hb=4088de47844451c7b331a612d41a0ec5fc7db53a;hp=743e8160a231296833292ef7681c71e453f4113b;hpb=3b66010c1f381f397e827209727742daf642e7fd;p=staging%2FHomeScreen.git diff --git a/HomeScreenNG/statusbarmodel.h b/HomeScreenNG/statusbarmodel.h deleted file mode 100644 index 743e816..0000000 --- a/HomeScreenNG/statusbarmodel.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef STATUSBARMODEL_H -#define STATUSBARMODEL_H - -#include - -class StatusBarModel : public QAbstractListModel -{ - Q_OBJECT -public: - explicit StatusBarModel(QObject *parent = nullptr); - ~StatusBarModel(); - - int rowCount(const QModelIndex &parent = QModelIndex()) const override; - - QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; - QHash roleNames() const override; - -private: - class Private; - Private *d; -}; - -#endif // STATUSBARMODEL_H