27 lines
320 B
C++
27 lines
320 B
C++
#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
|