remove.hpp 533 B

12345678910111213141516171819202122232425
  1. // Copyright (c) 2019, QuantStack and Mamba Contributors
  2. //
  3. // Distributed under the terms of the BSD 3-Clause License.
  4. //
  5. // The full license is in the file LICENSE, distributed with this software.
  6. #ifndef MAMBA_API_REMOVE_HPP
  7. #define MAMBA_API_REMOVE_HPP
  8. #include <string>
  9. #include <vector>
  10. #include "mamba/api/constants.hpp"
  11. namespace mamba
  12. {
  13. void remove(int flags = MAMBA_REMOVE_PRUNE);
  14. namespace detail
  15. {
  16. void remove_specs(const std::vector<std::string>& specs, bool prune, bool force);
  17. }
  18. }
  19. #endif