10 BaseTree<Cell>::BaseTree(
const BaseTree<Cell>& bt) : _root(NULL)
14 _root = new Cell(*bt._root);
19 BaseTree<Cell>::~BaseTree()
26 BaseTree<Cell>::Clear()
37 BaseTree<Cell>::Init()
42 typename BaseTree<Cell>::CellType*
43 BaseTree<Cell>::Root()
49 const typename BaseTree<Cell>::CellType*
50 BaseTree<Cell>::Root()
const
57 BaseTree<Cell>::Root(Cell* root)
64 BaseTree<Cell>::IsLeaf(
const CellType* cell)
const
66 return (*cell)[0] == NULL;
71 BaseTree<Cell>::operator=(
const BaseTree<Cell>& bt)
76 _root =
new Cell(*bt._root);