| 255 | } |
| 256 | |
| 257 | void Do() |
| 258 | { |
| 259 | for (int lat = m_bottom; lat <= m_top; ++lat) |
| 260 | for (int lon = m_left; lon <= m_right; ++lon) |
| 261 | ProcessTile(lat, lon); |
| 262 | } |
| 263 | |
| 264 | private: |
| 265 | void Init(int left, int bottom, int right, int top) |
no outgoing calls
no test coverage detected