update.hpp 455 B

12345678910111213141516171819202122
  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_UPDATE_HPP
  7. #define MAMBA_API_UPDATE_HPP
  8. #include <string>
  9. #include <vector>
  10. #include "mamba/core/mamba_fs.hpp"
  11. #include "mamba/core/query.hpp"
  12. namespace mamba
  13. {
  14. void update(bool update_all = false, bool prune = false);
  15. }
  16. #endif