aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Dependencies.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/toolsrc/include/vcpkg_Dependencies.h b/toolsrc/include/vcpkg_Dependencies.h
index 4da9de694..1c49ccafd 100644
--- a/toolsrc/include/vcpkg_Dependencies.h
+++ b/toolsrc/include/vcpkg_Dependencies.h
@@ -26,5 +26,13 @@ namespace vcpkg::Dependencies
install_plan_action plan;
};
+ enum class remove_plan_type
+ {
+ NOT_INSTALLED,
+ DEPENDENCIES_NOT_SATISFIED,
+ SHOULD_REMOVE
+ };
+
+
std::vector<package_spec_with_install_plan> create_install_plan(const vcpkg_paths& paths, const std::vector<package_spec>& specs, const StatusParagraphs& status_db);
}