! @brief Open an ASTM E57 imaging data file for reading/writing. @param [in] fname File name to open. Support of '\' as a directory separating character is system dependent. For maximum portability, it is recommended that '/' be used as a directory separator in file names. Special device file name support are implementation dependent (e.g. "\\.\PhysicalDrive3" or "/dev/hd3"). It is recommended th
| 284 | CompressedVectorNode, E57Exception, E57Utilities::E57Utilities |
| 285 | */ |
| 286 | ImageFile::ImageFile( const ustring &fname, const ustring &mode, |
| 287 | ReadChecksumPolicy checksumPolicy ) : |
| 288 | impl_( new ImageFileImpl( checksumPolicy ) ) |
| 289 | { |
| 290 | // Do second phase of construction, now that ImageFile object is complete. |
| 291 | impl_->construct2( fname, mode ); |
| 292 | } |
| 293 | |
| 294 | ImageFile::ImageFile( const char *input, const uint64_t size, ReadChecksumPolicy checksumPolicy ) : |
| 295 | impl_( new ImageFileImpl( checksumPolicy ) ) |
nothing calls this directly
no test coverage detected