Template base class for file readers designating what type of data object the reader returns.
More...
|
|
| 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 override=0 |
| virtual std::shared_ptr< T > | readData (const std::filesystem::path &filePath)=0 |
| virtual std::shared_ptr< T > | readData (const std::filesystem::path &filePath, MetaDataOwner *) |
|
| 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) |
| virtual bool | setOption (std::string_view key, std::any value) |
| | Set reader specific options See the documentation of the specific reader for the available options.
|
| virtual std::any | getOption (std::string_view key) |
| | Query the value of an reader specific option.
|
|
template<typename T> |
| bool | readsType () const |
template<typename T>
class inviwo::DataReaderType< T >
Template base class for file readers designating what type of data object the reader returns.