aboutsummaryrefslogtreecommitdiff
path: root/src/RWAHostModel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/RWAHostModel.h')
-rw-r--r--src/RWAHostModel.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/RWAHostModel.h b/src/RWAHostModel.h
deleted file mode 100644
index 8697df2..0000000
--- a/src/RWAHostModel.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef RWAHOSTMODEL_H
-#define RWAHOSTMODEL_H
-
-#include <QObject>
-#include <QAbstractListModel>
-
-#include "RWAHost.h"
-
-class RWAHostModel : public QAbstractListModel {
- Q_OBJECT
-
-public:
- explicit RWAHostModel(QObject * parent = nullptr);
- int rowCount(const QModelIndex& parent = QModelIndex()) const;
- int columnCount(const QModelIndex& parent = QModelIndex()) const;
- QVariant data(const QModelIndex & index, int role = Qt::DisplayRole) const;
- void populate();
-
-private:
- QStringList mDatas;
-};
-
-#endif // RWAHOSTMODEL_H