create.hpp 486 B

123456789101112131415161718192021222324
  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_CREATE_HPP
  7. #define MAMBA_API_CREATE_HPP
  8. #include <string>
  9. #include "mamba/core/mamba_fs.hpp"
  10. namespace mamba
  11. {
  12. void create();
  13. namespace detail
  14. {
  15. void store_platform_config(const fs::u8path& prefix, const std::string& platform);
  16. }
  17. }
  18. #endif