KvDocument.hpp 857 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-12-25
  6. * Changed: 2021-07-15
  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. {
  17. class KvDocument : public ls_std::Class
  18. {
  19. public:
  20. KvDocument();
  21. ~KvDocument() override = default;
  22. bool addPair(ls_std::KvPair _pair);
  23. void clear();
  24. std::map<ls_std::kv_key, ls_std::KvPair> getPairs();
  25. bool hasPair(const ls_std::kv_key &_key);
  26. bool removePair(const ls_std::kv_key &_key);
  27. private:
  28. std::map<ls_std::kv_key, ls_std::KvPair> pairs{};
  29. bool _hasPair(const ls_std::kv_key &_key);
  30. };
  31. }
  32. #endif