37 lines
655 B
C++
37 lines
655 B
C++
/*
|
||
* © Copyright 2014 – Urheberrechtshinweis
|
||
* Alle Rechte vorbehalten / All Rights Reserved
|
||
*
|
||
* Programmcode ist urheberrechtlich geschuetzt.
|
||
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
|
||
* Keine Verwendung ohne explizite Genehmigung.
|
||
* (vgl. § 106 ff UrhG / § 97 UrhG)
|
||
*/
|
||
|
||
#ifndef LINTVIEW_H
|
||
#define LINTVIEW_H
|
||
|
||
#include "fixC11.h"
|
||
|
||
#include <QListView>
|
||
class QStringListModel;
|
||
#include <Indoor/floorplan/v2/Floorplan.h>
|
||
|
||
class LINTView : public QListView {
|
||
|
||
private:
|
||
|
||
QStringListModel* mdl;
|
||
|
||
public:
|
||
|
||
LINTView();
|
||
|
||
public:
|
||
|
||
void update(Floorplan::IndoorMap* map);
|
||
|
||
};
|
||
|
||
#endif // LINTVIEW_H
|