12345678910111213141516171819202122232425262728293031 |
- #ifndef LS_STD_KV_PARSE_DATA_HPP
- #define LS_STD_KV_PARSE_DATA_HPP
- #include <string>
- #include <ls_std/os/dynamic_goal.hpp>
- namespace ls
- {
- namespace std
- {
- namespace io
- {
- struct DYNAMIC_GOAL KvParseParameter
- {
- ::std::string::size_type index{};
- ::std::string line{};
- };
- }
- }
- }
- #endif
|