Sha256: f702842275a2b5640f29e73439074c494ba4a6951bdaf62ffab643df90900f02
Contents?: true
Size: 622 Bytes
Versions: 16
Compression:
Stored size: 622 Bytes
Contents
#pragma once #include <string> #include <memory> #include <hocon/path.hpp> namespace hocon { class substitution_expression : public std::enable_shared_from_this<substitution_expression> { public: substitution_expression(path the_path, bool optional); path get_path() const; bool optional() const; std::shared_ptr<substitution_expression> change_path(path new_path); std::string to_string() const; bool operator==(substitution_expression const& other) const; private: const path _path; const bool _optional; }; } // namespace hocon
Version data entries
16 entries across 16 versions & 2 rubygems