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