// file : bdep/config.hxx -*- C++ -*- // copyright : Copyright (c) 2014-2017 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BDEP_CONFIG_HXX #define BDEP_CONFIG_HXX #include #include #include #include namespace bdep { shared_ptr cmd_config_add (const dir_path& prj, database&, dir_path path, optional name, optional default_ = nullopt, optional id = nullopt, const char* what = "added"); shared_ptr cmd_config_create (const common_options&, const dir_path& prj, database&, dir_path path, cli::scanner& args, optional name, optional default_ = nullopt, optional id = nullopt); int cmd_config (const cmd_config_options&, cli::scanner& args); } #endif // BDEP_CONFIG_HXX