pmt: switch builder to ninja. And some extra improvements

This commit is contained in:
2025-08-27 22:04:06 +03:00
parent e0f0b5b484
commit 41336609fa
8 changed files with 82 additions and 15 deletions

View File

@@ -221,6 +221,21 @@ public:
*/
[[nodiscard]] bool isLogical(std::string_view name) const;
/**
* Copy partition list to vec, current vec contents are cleaned
*/
bool copyPartitionsToVector(std::vector<std::string> &vec) const;
/**
* Copy logical partition list to vec, current vec contents are cleaned
*/
bool copyLogicalPartitionsToVector(std::vector<std::string> &vec) const;
/**
* Copy physical partition list to vec, current vec contents are cleaned
*/
bool copyPhysicalPartitionsToVector(std::vector<std::string> &vec) const;
/**
* The created list and the current search index name are cleared.
*/