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/mapview/model/MMRoot.h
2016-05-24 16:55:19 +02:00

39 lines
665 B
C++

#ifndef MMROOT_H
#define MMROOT_H
#include "MapLayer.h"
#include "MMFloors.h"
#include <Indoor/floorplan/v2/Floorplan.h>
/**
* floor-layer containing one floor
* and its outline, obstacles, access-points, ...
*/
class MMRoot : public MapLayer {
private:
/** the underlying data-structure */
Floorplan::IndoorMap* map;
public:
/** ctor. existing floor */
MMRoot(MapLayer* parent, Floorplan::IndoorMap* map) : MapLayer(parent), map(map) {
// all floors
new MMFloors(this, map);
}
/** get the underlying model */
Floorplan::IndoorMap* getMap() {return map;}
std::string getLayerName() const override {return "root";}
};
#endif // MMROOT_H