QTfrontend/model/roomslistmodel.h
changeset 6732 c906dc78091f
child 6733 5abbc345a82f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/QTfrontend/model/roomslistmodel.h	Thu Feb 23 00:46:03 2012 +0400
@@ -0,0 +1,23 @@
+#ifndef ROOMSLISTMODEL_H
+#define ROOMSLISTMODEL_H
+
+#include <QAbstractTableModel>
+#include <QStringList>
+
+class RoomsListModel : public QAbstractTableModel
+{
+    Q_OBJECT
+public:
+    explicit RoomsListModel(QObject *parent = 0);
+
+    QVariant headerData(int section, Qt::Orientation orientation, int role) const;
+    int rowCount(const QModelIndex & parent) const;
+    int columnCount(const QModelIndex & parent) const;
+    QVariant data(const QModelIndex &index, int role) const;
+
+private:
+    QList<QStringList> m_data;
+    QStringList m_headerData;
+};
+
+#endif // ROOMSLISTMODEL_H