| 6 | class ILeafSkipper; |
| 7 | |
| 8 | enum TDirection { |
| 9 | D_LEFT, |
| 10 | D_FINAL, |
| 11 | D_NEXT, |
| 12 | D_RIGHT, |
| 13 | D_MAX |
| 14 | }; |
| 15 | |
| 16 | inline TDirection& operator++(TDirection& direction) { |
| 17 | direction = static_cast<TDirection>(direction + 1); |
no outgoing calls
no test coverage detected