Information structures.
| 42 | |
| 43 | /// Information structures. |
| 44 | struct InfoFile { |
| 45 | InfoFile() = delete; |
| 46 | InfoFile(const std::filesystem::path &FName) noexcept : FileName(FName) {} |
| 47 | |
| 48 | std::filesystem::path FileName; |
| 49 | }; |
| 50 | |
| 51 | struct InfoLoading { |
| 52 | InfoLoading() = delete; |
no outgoing calls
no test coverage detected