mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
38b2dec354
* Move getFQDNOrHostName to base/common/ * Add argsToConfig to ya.make * Add coverage.cpp to ya.make Also remove WITH_COVERAGE from config file
12 lines
327 B
C++
12 lines
327 B
C++
#pragma once
|
|
|
|
#include <Poco/Util/Application.h>
|
|
|
|
namespace Poco::Util
|
|
{
|
|
class LayeredConfiguration;
|
|
}
|
|
|
|
/// Import extra command line arguments to configuration. These are command line arguments after --.
|
|
void argsToConfig(const Poco::Util::Application::ArgVec & argv, Poco::Util::LayeredConfiguration & config, int priority);
|