mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 12:22:12 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
11 lines
355 B
C++
11 lines
355 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace Poco { class Logger; namespace Util { class LayeredConfiguration; } }
|
|
|
|
namespace DB
|
|
{
|
|
/// Read configuration files related to clickhouse-client like applications. Returns true if any configuration files were read.
|
|
bool configReadClient(Poco::Util::LayeredConfiguration & config, const std::string & home_path);
|
|
}
|