| 24 | ThumbnailInfo() noexcept : width(0), format(ImageFormat::png) { } |
| 25 | bool IsValid() const noexcept { return width != 0; } |
| 26 | void Invalidate() noexcept { width = 0; } |
| 27 | }; |
| 28 | |
| 29 | GCodeFileInfo() noexcept { Init(); } |
no outgoing calls
no test coverage detected