Return wheter the specified base is adjacent. */
| 68 | |
| 69 | /** Return wheter the specified base is adjacent. */ |
| 70 | bool checkBase(uint8_t base) const |
| 71 | { |
| 72 | return m_record & (1 << base); |
| 73 | } |
| 74 | |
| 75 | /** Clear all adjacency. */ |
| 76 | void clear() |
no outgoing calls