This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
IndoorMap/misc/LINTView.h
kazu e774a66f34 added first version of LINT to the editor
fixed issue with incorrect stairs
2017-03-20 14:45:11 +01:00

25 lines
299 B
C++

#ifndef LINTVIEW_H
#define LINTVIEW_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