5 #include "BuildingFootprints.h"
6 #include "BuildingFootprint.h"
12 namespace BuildingFootprints
17 typedef std::string ModelId;
21 , m_footprints(footprints)
25 ModelId GetId()
const {
return m_modelId; }
26 std::vector<BuildingFootprint> GetFootprints()
const {
return m_footprints; }
27 bool IsFlashing()
const {
return m_flashing; }
28 void SetFlashing(
bool enabled) { m_flashing = enabled; }
30 const std::string m_modelId;
31 const std::vector<BuildingFootprint> m_footprints;