| 229 | void SetMaxDepth(unsigned int d) noexcept { maxDepth = d; } |
| 230 | bool IncreaseDepth() noexcept { if (currentDepth < maxDepth) { ++currentDepth; return true; } return false; } |
| 231 | void DecreaseDepth() noexcept { --currentDepth; } |
| 232 | void AddIndex(int32_t index) THROWS(GCodeException); |
| 233 | void AddIndex() THROWS(GCodeException); |
| 234 | void RemoveIndex() THROWS(GCodeException); |