/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-12-25 * Changed: 2022-05-12 * * */ #ifndef LS_STD_KV_DOCUMENT_HPP #define LS_STD_KV_DOCUMENT_HPP #include #include "KvPair.hpp" #include #include namespace ls { namespace std { namespace io { class KvDocument : public ls::std::core::Class { public: KvDocument(); ~KvDocument() override = default; bool addPair(ls::std::io::KvPair _pair); void clear(); ::std::map getPairs(); bool hasPair(const ls::std::core::type::kv_key &_key); bool removePair(const ls::std::core::type::kv_key &_key); private: ::std::map pairs{}; bool _hasPair(const ls::std::core::type::kv_key &_key); }; } } } #endif