Sha256: 4e3f3be87511fc459ec857ed7c7811f47d2ef1ebec150b4e81fa55d9e0d923ed
Contents?: true
Size: 851 Bytes
Versions: 16
Compression:
Stored size: 851 Bytes
Contents
#include <hocon/config_resolve_options.hpp> namespace hocon { config_resolve_options::config_resolve_options(bool use_system_environment, bool allow_unresolved) : _use_system_environment(use_system_environment), _allow_unresovled(allow_unresolved) { } config_resolve_options config_resolve_options::set_use_system_environment(bool value) const { return config_resolve_options(value, _allow_unresovled); } bool config_resolve_options::get_use_system_environment() const { return _use_system_environment; } config_resolve_options config_resolve_options::set_allow_unresolved(bool value) const { return config_resolve_options(_use_system_environment, value); } bool config_resolve_options::get_allow_unresolved() const { return _allow_unresovled; } } // namespace hocon
Version data entries
16 entries across 16 versions & 2 rubygems