compares the _flags variables of the nodes (for the purpose of patrol decisions!)
| 80 | int getFlags() { return _flags; } |
| 81 | /// compares the _flags variables of the nodes (for the purpose of patrol decisions!) |
| 82 | bool operator<(Node &b) { return _flags < b.getFlags(); }; |
| 83 | bool isAllocated() const; |
| 84 | void allocateNode(); |
| 85 | void freeNode(); |