1#pragma once
2#include <string>
3#include <vector>
4
5namespace Poco
6{
7namespace Util
8{
9 class AbstractConfiguration;
10}
11}
12namespace DB
13{
14/// get all internal key names for given key
15std::vector<std::string> getMultipleKeysFromConfig(const Poco::Util::AbstractConfiguration & config, const std::string & root, const std::string & name);
16/// Get all values for given key
17std::vector<std::string> getMultipleValuesFromConfig(const Poco::Util::AbstractConfiguration & config, const std::string & root, const std::string & name);
18}
19