Sha256: f40cce4c3647b93e3161750b8ba7b74a04be875fac98afded34b9c341a4451c8
Contents?: true
Size: 501 Bytes
Versions: 16
Compression:
Stored size: 501 Bytes
Contents
#pragma once #include <hocon/config_value.hpp> #include <vector> namespace hocon { /** * Interface that tags a ConfigValue that is not mergeable until after * substitutions are resolved. Basically these are special ConfigValue that * never appear in a resolved tree, like {@link ConfigSubstitution} and * {@link ConfigDelayedMerge}. */ class unmergeable { public: virtual std::vector<shared_value> unmerged_values() const = 0; }; } // namespace hocon
Version data entries
16 entries across 16 versions & 2 rubygems