| 239 | |
| 240 | template<typename T, typename CTYPE = float> |
| 241 | struct QuadTreeItem |
| 242 | { |
| 243 | // The item Itself |
| 244 | T item; |
| 245 | |
| 246 | // A "locator" to the container/iterator that points to this item's iterator in the |
| 247 | // top level list - phew |
| 248 | QuadTreeItemLocation<typename std::list<QuadTreeItem<T, CTYPE>>::iterator> pItem; |
| 249 | }; |
| 250 | |
| 251 | template <typename T, typename CTYPE = float> |
| 252 | class QuadTreeContainer |
nothing calls this directly
no outgoing calls
no test coverage detected