public void AddNode(OOBNode n)
 {
     _root.addChild(n);
 }
 public OOBTree(OOBNode node)
 {
     _root.addChild(node);
 }