config.hpp 369 B

1234567891011121314151617181920
  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_CONFIG_HPP
  7. #define MAMBA_API_CONFIG_HPP
  8. namespace mamba
  9. {
  10. void config_describe();
  11. void config_list();
  12. void config_sources();
  13. }
  14. #endif