| 248 | }; |
| 249 | |
| 250 | FileLoader::FileLoader( SourceFileAudioLoader* cinderParent, const ci::IStreamRef& stream ) |
| 251 | : mCinderParent( cinderParent ), mStream( stream ) |
| 252 | { |
| 253 | if( mStream ) { |
| 254 | mStream->seekAbsolute( 0 ); |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | FileLoader::~FileLoader() |
| 259 | { |
nothing calls this directly
no test coverage detected