KvParseParameter.hpp 539 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-12-25
  6. * Changed: 2022-07-01
  7. *
  8. * */
  9. #ifndef LS_STD_KV_PARSE_DATA_HPP
  10. #define LS_STD_KV_PARSE_DATA_HPP
  11. #include <string>
  12. #include <ls_std/os/dynamic_goal.hpp>
  13. namespace ls
  14. {
  15. namespace std
  16. {
  17. namespace io
  18. {
  19. struct DYNAMIC_GOAL KvParseParameter
  20. {
  21. ::std::string::size_type index{};
  22. ::std::string line{};
  23. };
  24. }
  25. }
  26. }
  27. #endif