18 typedef std::map<Eegeo::Streaming::MortonKey, TrafficSimulationCell*, Eegeo::Streaming::MortonKeyCompare> TTrafficCellMap;
19 typedef TTrafficCellMap::const_iterator TTrafficCellConstIterator;
22 : m_managePopulation(managePopulation)
27 TTrafficCellConstIterator Begin()
const {
return m_storage.begin(); }
28 TTrafficCellConstIterator End()
const {
return m_storage.end(); }
35 bool ShouldManagePopulation()
const {
return m_managePopulation; }
39 TTrafficCellMap m_storage;
41 bool m_managePopulation;