3 #include "BuildingHighlights.h"
4 #include "LatLongAltitude.h"
10 namespace BuildingHighlights
17 : m_bottomAltitude(0.0)
22 double bottomAltitude,
24 const std::vector<Space::LatLong>& points)
25 : m_bottomAltitude(bottomAltitude)
26 , m_topAltitude(topAltitude)
31 double GetBottomAltitude()
const {
return m_bottomAltitude; }
32 double GetTopAltitude()
const {
return m_topAltitude; }
33 const std::vector<Space::LatLong>& GetPoints()
const {
return m_points; }
36 double m_bottomAltitude;
38 std::vector<Space::LatLong> m_points;