| 190 | } |
| 191 | |
| 192 | ReaderImpl::ReaderImpl( const ustring &filePath, const ReaderOptions &options ) : |
| 193 | imf_( filePath, "r", options.checksumPolicy ), root_( imf_.root() ), |
| 194 | data3D_( root_.isDefined( "/data3D" ) ? root_.get( "/data3D" ) : VectorNode( imf_ ) ), |
| 195 | images2D_( root_.isDefined( "/images2D" ) ? root_.get( "/images2D" ) : VectorNode( imf_ ) ) |
| 196 | { |
| 197 | } |
| 198 | |
| 199 | ReaderImpl::~ReaderImpl() |
| 200 | { |
nothing calls this directly
no test coverage detected