Sha256: 83f4279adc7f394612ad6187fb4bd8958096f25d70c71866d63f8f28572bcc3b

Contents?: true

Size: 1.07 KB

Versions: 16

Compression:

Stored size: 1.07 KB

Contents

#pragma once

#include "export.h"
#include "types.hpp"

namespace hocon {

    /**
     * Implement this <em>in addition to</em> {@link config_includer} if you want to
     * support inclusion of files with the {@code include file("filename")} syntax.
     * If you do not implement this but do implement {@link config_includer},
     * attempts to load files will use the default includer.
     */
    class LIBCPP_HOCON_EXPORT config_includer_file {
    public:
        /**
         * Parses another item to be included. The returned object typically would
         * not have substitutions resolved. You can throw a config_exception here to
         * abort parsing, or return an empty object, but may not return null.
         *
         * @param context
         *            some info about the include context
         * @param what
         *            the include statement's argument (a file path)
         * @return a non-null config_object
         */
        virtual shared_object include_file(shared_include_context context, std::string what) const = 0;
    };

}  // namespace hocon

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
facter-3.12.2.cfacter.20181217 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.12.1.cfacter.20181031 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.11.6.cfacter.20181031 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.12.1.cfacter.20181023 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.11.5.cfacter.20181022 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.12.0.cfacter.20181004 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.12.0.cfacter.20181001 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.12.0.cfacter.20180918 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.11.4.cfacter.20180821 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.11.3.cfacter.20180716 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.11.2.cfacter.20180612 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.9.6.cfacter.20180612 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.11.2.cfacter.20180606 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.9.6.cfacter.20180606 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
facter-3.11.0.cfacter.20180319 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp
cfacter-3.11.0.rc.20180314 ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp