------------------------------------------------------------------------------------------------ Get a pointer to the next line from the file
| 186 | // ------------------------------------------------------------------------------------------------ |
| 187 | // Get a pointer to the next line from the file |
| 188 | bool AC3DImporter::GetNextLine() { |
| 189 | SkipLine(&mBuffer.data, mBuffer.end); |
| 190 | return SkipSpaces(&mBuffer.data, mBuffer.end); |
| 191 | } |
| 192 | |
| 193 | // ------------------------------------------------------------------------------------------------ |
| 194 | // Parse an object section in an AC file |
nothing calls this directly
no test coverage detected