Inviwo
0.9.10.1
Inviwo documentation
|
Template base class for file readers designating what type of data object the reader returns. More...
#include <datareader.h>
Public Member Functions | |
DataReaderType (const DataReaderType &rhs)=default | |
DataReaderType (DataReaderType &&rhs) noexcept=default | |
DataReaderType & | operator= (const DataReaderType &that)=default |
DataReaderType & | operator= (DataReaderType &&that) noexcept=default |
virtual DataReaderType * | clone () const =0 |
virtual std::shared_ptr< T > | readData (const std::string &filePath)=0 |
virtual std::shared_ptr< T > | readData (const std::string &filePath, MetaDataOwner *) |
Public Member Functions inherited from inviwo::DataReader | |
DataReader (const DataReader &rhs)=default | |
DataReader (DataReader &&rhs) noexcept=default | |
DataReader & | operator= (const DataReader &that)=default |
DataReader & | operator= (DataReader &&that) noexcept=default |
const std::vector< FileExtension > & | getExtensions () const |
void | addExtension (FileExtension ext) |
Template base class for file readers designating what type of data object the reader returns.
|
inlinevirtual |
Optional overload that passed a MetaDataOwner to facilitate saving/loading state in the data reader the use is optional and the pointer can be null.
Reimplemented in inviwo::RawVolumeReader.