|
Developer Documentation
|
#include <OpenFlipper/libs_required/OpenMesh/src/OpenMesh/Core/IO/writer/BaseWriter.hh>
Public Types | |
| typedef unsigned int | Option |
Public Member Functions | |
| virtual | ~BaseWriter () |
| Destructor. | |
| virtual std::string | get_description () const =0 |
| Return short description of the supported file format. | |
| virtual std::string | get_extensions () const =0 |
| Return file format's extension. | |
| 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. | |
| 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. | |
Protected Member Functions | |
| bool | check (BaseExporter &_be, const Options &_writeOptions) const |
Base class for all writer modules. The module should register itself at the IOManager by calling the register_module function.
Definition at line 83 of file BaseWriter.hh.
| typedef unsigned int OpenMesh::IO::BaseWriter::Option |
Definition at line 87 of file BaseWriter.hh.
|
inlinevirtual |
Destructor.
Definition at line 90 of file BaseWriter.hh.
|
inlinevirtual |
Returns expected size of file if binary format is supported else 0.
Reimplemented in OpenMesh::IO::_OBJWriter_, OpenMesh::IO::_STLWriter_, OpenMesh::IO::_VTKWriter_, OpenMesh::IO::_OFFWriter_, OpenMesh::IO::_OMWriter_, and OpenMesh::IO::_PLYWriter_.
Definition at line 128 of file BaseWriter.hh.
|
virtual |
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.
| _filename | complete name of a file or just the extension |
Definition at line 79 of file BaseWriter.cc.
|
inlineprotected |
Definition at line 134 of file BaseWriter.hh.
|
pure virtual |
Return short description of the supported file format.
Implemented in OpenMesh::IO::_OBJWriter_, OpenMesh::IO::_OFFWriter_, OpenMesh::IO::_OMWriter_, OpenMesh::IO::_PLYWriter_, OpenMesh::IO::_STLWriter_, and OpenMesh::IO::_VTKWriter_.
|
pure virtual |
Return file format's extension.
Implemented in OpenMesh::IO::_OBJWriter_, OpenMesh::IO::_OFFWriter_, OpenMesh::IO::_OMWriter_, OpenMesh::IO::_PLYWriter_, OpenMesh::IO::_STLWriter_, and OpenMesh::IO::_VTKWriter_.
|
pure virtual |
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. |
Implemented in OpenMesh::IO::_OFFWriter_, OpenMesh::IO::_OBJWriter_, OpenMesh::IO::_OMWriter_, OpenMesh::IO::_PLYWriter_, OpenMesh::IO::_STLWriter_, and OpenMesh::IO::_VTKWriter_.
|
pure virtual |
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. |
Implemented in OpenMesh::IO::_OBJWriter_, OpenMesh::IO::_OFFWriter_, OpenMesh::IO::_OMWriter_, OpenMesh::IO::_PLYWriter_, OpenMesh::IO::_STLWriter_, and OpenMesh::IO::_VTKWriter_.