MCPcopy Create free account
hub / github.com/PDAL/PDAL / ImageFile

Method ImageFile

plugins/e57/libE57Format/src/ImageFile.cpp:286–292  ·  view source on GitHub ↗

! @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

Source from the content-addressed store, hash-verified

284CompressedVectorNode, E57Exception, E57Utilities::E57Utilities
285*/
286ImageFile::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
294ImageFile::ImageFile( const char *input, const uint64_t size, ReadChecksumPolicy checksumPolicy ) :
295 impl_( new ImageFileImpl( checksumPolicy ) )

Callers

nothing calls this directly

Calls 1

construct2Method · 0.80

Tested by

no test coverage detected