Changed file structure and removed useless output files.
[speedfreak] / UI / stringlistmodel.h
diff --git a/UI/stringlistmodel.h b/UI/stringlistmodel.h
deleted file mode 100644 (file)
index 5aee6c2..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef STRINGLISTMODEL_H
-#define STRINGLISTMODEL_H
-#include <QAbstractListModel>
-#include <QObject>
-#include <QStringList>
-
-class StringListModel : public QAbstractListModel
-{
-    Q_OBJECT
-public:
-    StringListModel(const QStringList &strings, QObject *parent = 0):QAbstractListModel(parent), stringList(strings) {}
-    int rowCount(const QModelIndex &parent = QModelIndex()) const;
-    QVariant data(const QModelIndex &index, int role) const;
-    QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
-
-private:
-    QStringList stringList;
-};
-
-#endif // STRINGLISTMODEL_H