node.cpp 235 B

12345678
  1. #include "precomp_wasabi_bfc.h"
  2. #include "node.h"
  3. // In debug mode, the node baseclass will keep track of the count
  4. // of all nodes created, to help detect leakage of nodes.
  5. #ifdef _DEBUG
  6. int Node::count = 0;
  7. #endif//_DEBUG