KvParseParameter.hpp 488 B

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