123456789101112131415161718192021222324252627282930 |
- #ifndef LS_STD_KV_PARSE_DATA_HPP
- #define LS_STD_KV_PARSE_DATA_HPP
- #include <string>
- namespace ls
- {
- namespace std
- {
- namespace io
- {
- struct KvParseParameter
- {
- ::std::string::size_type index{};
- ::std::string line{};
- };
- }
- }
- }
- #endif
|