filter/LoadChain: use struct ConfigData

This commit is contained in:
Max Kellermann
2018-07-17 21:47:32 +02:00
parent 57d77cc8a0
commit 7b02c0224c
3 changed files with 15 additions and 8 deletions

View File

@@ -20,6 +20,7 @@
#ifndef MPD_FILTER_LOAD_CHAIN_HXX
#define MPD_FILTER_LOAD_CHAIN_HXX
struct ConfigData;
class PreparedFilter;
/**
@@ -30,9 +31,12 @@ class PreparedFilter;
* Throws std::runtime_error on error.
*
* @param chain the chain to append filters on
* @param config the global configuration to load filter definitions from
* @param spec the filter chain specification
*/
void
filter_chain_parse(PreparedFilter &chain, const char *spec);
filter_chain_parse(PreparedFilter &chain,
const ConfigData &config,
const char *spec);
#endif