KvParseParameter.hpp 454 B

12345678910111213141516171819202122232425
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-12-25
  6. * Changed: 2021-05-02
  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/boxing/String.hpp>
  13. namespace ls_std
  14. {
  15. struct KvParseParameter
  16. {
  17. std::string::size_type index{};
  18. ls_std::String line{};
  19. };
  20. }
  21. #endif