KVPair.hpp 728 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 <string>
  13. namespace ls_std {
  14. class KVPair : public ls_std::Class {
  15. public:
  16. explicit KVPair(const std::string& _key, std::string _value);
  17. ~KVPair() override = default;
  18. std::string getKey();
  19. std::string getValue();
  20. void setValue(const std::string& _value);
  21. private:
  22. std::string key {};
  23. std::string value {};
  24. void _assignKey(const std::string& _key);
  25. };
  26. }
  27. #endif