| 153 | } |
| 154 | |
| 155 | std::string CSimpleFile::ReadString() |
| 156 | { |
| 157 | const auto Size = ReadUint32(); |
| 158 | std::string str(Size, '\0'); |
| 159 | m_fFile.read(str.data(), Size); |
| 160 | return str; |
| 161 | } |
| 162 | |
| 163 | std::string CSimpleFile::ReadStringN(size_t count) { |
| 164 | char buf[1024] = { }; |
no test coverage detected