Developer Documentation
|
Public Member Functions | |
std::string | get_description () const override |
Return short description of the supported file format. More... | |
std::string | get_extensions () const override |
Return file format's extension. More... | |
bool | write (const std::string &, BaseExporter &, const Options &_writeOptions, std::streamsize _precision=6) const override |
bool | write (std::ostream &, BaseExporter &, const Options &_writeOptions, std::streamsize _precision=6) const override |
size_t | binary_size (BaseExporter &, const Options &) const override |
Returns expected size of file if binary format is supported else 0. More... | |
![]() | |
virtual | ~BaseWriter () |
Destructor. More... | |
virtual std::string | get_description () const =0 |
Return short description of the supported file format. More... | |
virtual std::string | get_extensions () const =0 |
Return file format's extension. More... | |
virtual bool | can_u_write (const std::string &_filename) const |
Returns true if writer can write _filename (checks extension). _filename can also provide an extension without a name for a file e.g. _filename == "om" checks, if the writer can write the "om" extension. More... | |
virtual bool | write (const std::string &_filename, BaseExporter &_be, const Options &_writeOptions, std::streamsize _precision=6) const =0 |
virtual bool | write (std::ostream &_os, BaseExporter &_be, const Options &_writeOptions, std::streamsize _precision=6) const =0 |
virtual size_t | binary_size (BaseExporter &, const Options &) const |
Returns expected size of file if binary format is supported else 0. More... | |
Additional Inherited Members | |
![]() | |
typedef unsigned int | Option |
![]() | |
bool | check (BaseExporter &_be, const Options &_writeOptions) const |
Definition at line 27 of file VTKWriter.hh.
OpenMesh::IO::_VTKWriter_::_VTKWriter_ | ( | ) |
Definition at line 23 of file VTKWriter.cc.
|
inlineoverridevirtual |
Returns expected size of file if binary format is supported else 0.
Reimplemented from OpenMesh::IO::BaseWriter.
Definition at line 38 of file VTKWriter.hh.
|
inlineoverridevirtual |
Return short description of the supported file format.
Implements OpenMesh::IO::BaseWriter.
Definition at line 32 of file VTKWriter.hh.
|
inlineoverridevirtual |
Return file format's extension.
Implements OpenMesh::IO::BaseWriter.
Definition at line 33 of file VTKWriter.hh.
|
overridevirtual |
Write to a file
_filename | write to file with the given filename |
_be | BaseExporter, which specifies the data source |
_writeOptions | writing options |
_precision | can be used to specify the precision of the floating point notation. |
Implements OpenMesh::IO::BaseWriter.
Definition at line 27 of file VTKWriter.cc.
|
overridevirtual |
Write to a std::ostream
_os | write to std::ostream |
_be | BaseExporter, which specifies the data source |
_writeOptions | writing options |
_precision | can be used to specify the precision of the floating point notation. |
Implements OpenMesh::IO::BaseWriter.
Definition at line 41 of file VTKWriter.cc.