aboutsummaryrefslogtreecommitdiffstats
path: root/src/config/ConfigTemplates.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/ConfigTemplates.hxx')
-rw-r--r--src/config/ConfigTemplates.hxx15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/config/ConfigTemplates.hxx b/src/config/ConfigTemplates.hxx
index 90d098dc0..3a18ebdc8 100644
--- a/src/config/ConfigTemplates.hxx
+++ b/src/config/ConfigTemplates.hxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2014 The Music Player Daemon Project
+ * Copyright (C) 2003-2015 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -23,9 +23,18 @@
struct ConfigTemplate {
const char *const name;
const bool repeatable;
- const bool block;
+
+ // TODO: print warning when a deprecated option is used
+ const bool deprecated;
+
+ constexpr ConfigTemplate(const char *_name,
+ bool _repeatable=false,
+ bool _deprecated=false)
+ :name(_name), repeatable(_repeatable),
+ deprecated(_deprecated) {}
};
-extern const ConfigTemplate config_templates[];
+extern const ConfigTemplate config_param_templates[];
+extern const ConfigTemplate config_block_templates[];
#endif