Jan_31_2024-Dev

This commit is contained in:
Ned Wright
2024-01-31 17:34:53 +00:00
parent 752a5785f0
commit 6d67818a94
376 changed files with 8101 additions and 7064 deletions

View File

@@ -36,15 +36,22 @@ public:
std::map<std::string, Package> &corrupted_packages
);
bool
Maybe<std::vector<Package>>
buildInstallationQueue(
const Package &updated_package,
const std::map<std::string, Package> &current_packages,
const std::map<std::string, Package> &new_packages
);
private:
Maybe<void>
buildRecInstallationQueue(
const Package &package,
std::vector<Package> &installation_queue,
const std::map<std::string, Package> &current_packages,
const std::map<std::string, Package> &new_packages
);
private:
std::string corrupted_file_path;
};
#endif // __MANIFEST_DIFF_CALCULATOR_H__