| 81 | { |
| 82 | template <typename T, typename CTYPE = float> |
| 83 | struct QuadTreeItemLocation |
| 84 | { |
| 85 | // Pointer to Top-Level Container |
| 86 | typename std::list<std::pair<geom2d::rect<CTYPE>, T>>* container = nullptr; |
| 87 | // Iterator that points to item in Top-Level Container |
| 88 | typename std::list<std::pair<geom2d::rect<CTYPE>, T>>::iterator iterator; |
| 89 | }; |
| 90 | |
| 91 | template <typename pT, typename CTYPE = float> |
| 92 | class DynamicQuadTree |
nothing calls this directly
no outgoing calls
no test coverage detected