diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-26 14:25:36 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-30 21:52:41 -0800 |
| commit | 9502d795bb325669df8e4e3b32f6ca60827813f1 (patch) | |
| tree | f89b9a1df90811918f547dc5f480d05e6f260f95 /toolsrc/include | |
| parent | 092f56e47d2f4513d0aae92bf7352482c7bffca8 (diff) | |
| download | vcpkg-9502d795bb325669df8e4e3b32f6ca60827813f1.tar.gz vcpkg-9502d795bb325669df8e4e3b32f6ca60827813f1.zip | |
Move & rename remove_plan_type enum
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg_Dependencies.h | 8 |
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); } |
