| 73 | void unmark(short prop) { _properties.reset(prop); } |
| 74 | bool isMarked(short prop) const { return _properties.get(prop); } |
| 75 | void resetMarks() { _properties = 0; } |
| 76 | |
| 77 | node(std::string n = "") : _name(n) {} |
| 78 | void setName(std::string n) { _name = n; } |