Example #1
0
	void BListNode::printDebugInfo()
	{
		Out(SYS_GEN|LOG_DEBUG) << "LIST " <<  children.count() << endl;
		for (int i = 0;i < children.count();i++)
		{
			BNode* n = children.at(i);
			n->printDebugInfo();
		}
		Out(SYS_GEN|LOG_DEBUG) << "END" << endl;
	}