KVPair.hpp 765 B

123456789101112131415161718192021222324252627282930313233343536
  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_PAIR_HPP
  10. #define LS_STD_KV_PAIR_HPP
  11. #include <ls_std/base/Class.hpp>
  12. #include "KVTypes.hpp"
  13. namespace ls_std {
  14. class KVPair : public ls_std::Class {
  15. public:
  16. explicit KVPair(const ls_std::kv_key& _key, ls_std::kv_value _value);
  17. ~KVPair() override = default;
  18. ls_std::kv_key getKey();
  19. ls_std::kv_value getValue();
  20. void setValue(const ls_std::kv_value& _value);
  21. private:
  22. ls_std::kv_key key {};
  23. ls_std::kv_value value {};
  24. void _assignKey(const ls_std::kv_key& _key);
  25. };
  26. }
  27. #endif