1234567891011121314151617181920212223242526 |
- #ifndef LS_STD_KV_PARSE_DATA_HPP
- #define LS_STD_KV_PARSE_DATA_HPP
- #include <string>
- namespace ls::std::io
- {
- struct KvParseParameter // TODO: turn to class, rather than keeping it as struct
- {
- public:
- ::std::string::size_type index{};
- ::std::string line{};
- };
- }
- #endif
|