NotNode.cc 182 B

12345678910111213
  1. #include <boost/foreach.hpp>
  2. #include "Base/Marcos.h"
  3. #include "LogicTree/NotNode.h"
  4. namespace Egametang {
  5. bool NotNode::Run()
  6. {
  7. return !node->Run();
  8. }
  9. } // namespace Egametang