aboutsummaryrefslogtreecommitdiff
path: root/bdep/config.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bdep/config.hxx')
-rw-r--r--bdep/config.hxx18
1 files changed, 8 insertions, 10 deletions
diff --git a/bdep/config.hxx b/bdep/config.hxx
index b521bac..6bc732e 100644
--- a/bdep/config.hxx
+++ b/bdep/config.hxx
@@ -14,25 +14,23 @@
namespace bdep
{
shared_ptr<configuration>
- cmd_config_add (const dir_path& prj,
+ cmd_config_add (const configuration_add_options&,
+ const dir_path& prj,
database&,
dir_path path,
optional<string> name,
- optional<bool> default_ = nullopt,
- optional<bool> forward = nullopt,
optional<uint64_t> id = nullopt,
const char* what = "added");
shared_ptr<configuration>
cmd_config_create (const common_options&,
- const dir_path& prj,
+ const configuration_add_options&,
+ const dir_path& prj,
database&,
- dir_path path,
- cli::scanner& args,
- optional<string> name,
- optional<bool> default_ = nullopt,
- optional<bool> forward = nullopt,
- optional<uint64_t> id = nullopt);
+ dir_path path,
+ cli::scanner& args,
+ optional<string> name,
+ optional<uint64_t> id = nullopt);
int
cmd_config (const cmd_config_options&, cli::scanner& args);