| 313 | }; |
| 314 | |
| 315 | DiskEncrypted::DiskEncrypted( |
| 316 | const String & name_, const Poco::Util::AbstractConfiguration & config_, const String & config_prefix_, const DisksMap & map_) |
| 317 | : DiskEncrypted(name_, parseDiskEncryptedSettings(name_, config_, config_prefix_, map_), config_, config_prefix_) |
| 318 | { |
| 319 | } |
| 320 | |
| 321 | DiskEncrypted::DiskEncrypted(const String & name_, std::unique_ptr<const DiskEncryptedSettings> settings_, |
| 322 | const Poco::Util::AbstractConfiguration & config_, const String & config_prefix_) |
nothing calls this directly
no test coverage detected