summaryrefslogtreecommitdiff
path: root/lsmaterialmodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'lsmaterialmodel.h')
-rw-r--r--lsmaterialmodel.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/lsmaterialmodel.h b/lsmaterialmodel.h
deleted file mode 100644
index 6b75fd6..0000000
--- a/lsmaterialmodel.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef LSMATERIALMODEL_H
-#define LSMATERIALMODEL_H
-
-#include <QAbstractListModel>
-#include "lyt/materials/materialcontainer.h"
-
-class LSMaterialModel : public QAbstractListModel
-{
- Q_OBJECT
-public:
- explicit LSMaterialModel(LYTMaterialContainer *container, QObject *parent = 0);
-
- int rowCount(const QModelIndex &parent) const;
- QVariant data(const QModelIndex &index, int role) const;
-
-private:
- LYTMaterialContainer *m_container;
-
-signals:
-
-public slots:
-
-};
-
-#endif // LSMATERIALMODEL_H