1 | #pragma once |
---|---|
2 | #include <Poco/Util/Application.h> |
3 | |
4 | namespace Poco::Util |
5 | { |
6 | class LayeredConfiguration; |
7 | } |
8 | |
9 | /// Import extra command line arguments to configuration. These are command line arguments after --. |
10 | void argsToConfig(const Poco::Util::Application::ArgVec & argv, Poco::Util::LayeredConfiguration & config, int priority); |
11 |