Sha256: 2788e88f4b4b8c36db16fff3c991b5f67c59dcbda9632effeb706eac1a4bc066
Contents?: true
Size: 1022 Bytes
Versions: 16
Compression:
Stored size: 1022 Bytes
Contents
#pragma once #include <string> #include "../export.h" namespace hocon { /** * A node in the syntax tree for a HOCON or JSON document. * * <p> * Because this object is immutable, it is safe to use from multiple threads and * there's no need for "defensive copies." * * <p> * <em>Do not implement interface {@code ConfigNode}</em>; it should only be * implemented by the config library. Arbitrary implementations will not work * because the library internals assume a specific concrete implementation. * Also, this interface is likely to grow new methods over time, so third-party * implementations will break. */ class LIBCPP_HOCON_EXPORT config_node { public: /** * The original text of the input which was used to form this particular * node. * * @return the original text used to form this node as a String */ virtual std::string render() const = 0; }; } // namespace hocon
Version data entries
16 entries across 16 versions & 2 rubygems