Sha256: 8c362a1e52cca76f31b3822e0705f030762ccdecc0d7c205b2638f4754a5324e
Contents?: true
Size: 994 Bytes
Versions: 16
Compression:
Stored size: 994 Bytes
Contents
/** * @file * Declares the JSON external fact resolver. */ #pragma once #include <facter/facts/external/resolver.hpp> namespace facter { namespace facts { namespace external { /** * Responsible for resolving facts from JSON files. */ struct json_resolver : resolver { /** * Determines if the resolver can resolve the facts from the given file. * @param path The path to the file to resolve facts from. * @return Returns true if the resolver can resolve the facts in the given file or false if it cannot. */ virtual bool can_resolve(std::string const& path) const; /** * Resolves facts from the given file. * @param path The path to the file to resolve facts from. * @param facts The fact collection to populate the external facts into. */ virtual void resolve(std::string const& path, collection& facts) const; }; }}} // namespace facter::facts::external
Version data entries
16 entries across 16 versions & 2 rubygems