| 16 | : _visitedCount(0), _id(0) {} |
| 17 | |
| 18 | void Node::visit(time_t timestamp) { |
| 19 | _visitedCount++; |
| 20 | BDLOG("visit id:%s times %d", this->getId().c_str(), this->_visitedCount); |
| 21 | } |
| 22 | |
| 23 | std::string Node::toString() const { |
| 24 | return this->getId(); |
no test coverage detected