KvTypes.hpp 372 B

123456789101112131415161718192021
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-12-25
  6. * Changed: 2021-04-23
  7. *
  8. * */
  9. #ifndef LS_STD_KV_TYPES_HPP
  10. #define LS_STD_KV_TYPES_HPP
  11. #include <string>
  12. namespace ls_std
  13. {
  14. using kv_key = std::string;
  15. using kv_value = std::string;
  16. }
  17. #endif