KVDocument.hpp 856 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-12-25
  6. * Changed: 2020-12-25
  7. *
  8. * */
  9. #ifndef LS_STD_KV_DOCUMENT_HPP
  10. #define LS_STD_KV_DOCUMENT_HPP
  11. #include <ls_std/base/Class.hpp>
  12. #include "KVPair.hpp"
  13. #include "KVTypes.hpp"
  14. #include <map>
  15. namespace ls_std {
  16. class KVDocument : public ls_std::Class {
  17. public:
  18. KVDocument();
  19. ~KVDocument() override = default;
  20. bool addPair(ls_std::KVPair _pair);
  21. void clear();
  22. std::map<ls_std::kv_key, ls_std::KVPair> getPairs();
  23. bool hasPair(const ls_std::kv_key& _key);
  24. void removePair(const ls_std::kv_key& _key);
  25. private:
  26. std::map<ls_std::kv_key, ls_std::KVPair> pairs {};
  27. bool _hasPair(const ls_std::kv_key& _key);
  28. };
  29. }
  30. #endif