Esempio n. 1
0
bool Node::IsParentOf(const Node *node)
{
	return (std::find(childs_.begin(), childs_.end(), node) != childs_.end());
}