| 66 | } |
| 67 | |
| 68 | void ObjReader::ready(PointTableRef) |
| 69 | { |
| 70 | m_istream = Utils::openFile(m_filename, false); |
| 71 | if (!m_istream) |
| 72 | throwError("Couldn't open '" + m_filename + "'."); |
| 73 | m_index = 0; |
| 74 | } |
| 75 | |
| 76 | void ObjReader::done(PointTableRef) |
| 77 | { |
nothing calls this directly
no test coverage detected