| 74 | } |
| 75 | |
| 76 | void DataSourcePath::createBuffer() |
| 77 | { |
| 78 | // no-op - we already supplied the buffer in the constructor |
| 79 | IStreamFileRef stream = loadFileStream( mFilePath ); |
| 80 | if( ! stream ) |
| 81 | throw StreamExc(); |
| 82 | |
| 83 | mBuffer = loadStreamBuffer( stream ); |
| 84 | } |
| 85 | |
| 86 | IStreamRef DataSourcePath::createStream() |
| 87 | { |
nothing calls this directly
no test coverage detected