Implementation of the OM format writer.
More...
#include <OpenMesh/Core/IO/writer/OMWriter.hh>
|
| _OMWriter_ () |
| Constructor.
|
|
virtual | ~_OMWriter_ () |
| Destructor.
|
|
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 (std::ostream &, BaseExporter &, const Options &_writeOptions, std::streamsize _precision=6) const override |
| Write to a std::ostream. More...
|
|
size_t | binary_size (BaseExporter &_be, const Options &_opt) const override |
| Returns expected size of file if binary format is supported else 0. More...
|
|
virtual | ~BaseWriter () |
| Destructor.
|
|
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). More...
|
|
virtual bool | write (const std::string &_filename, BaseExporter &_be, const Options &_writeOptions, std::streamsize _precision=6) const =0 |
| Write to a file. More...
|
|
virtual bool | write (std::ostream &_os, BaseExporter &_be, const Options &_writeOptions, std::streamsize _precision=6) const =0 |
| Write to a std::ostream. More...
|
|
virtual size_t | binary_size (BaseExporter &, const Options &) const |
| Returns expected size of file if binary format is supported else 0. More...
|
|
|
static OMFormat::uint8 | get_version () |
|
|
bool | write (const std::string &, BaseExporter &, const Options &_writeOptions, std::streamsize _precision=6) const override |
| Write to a file. More...
|
|
bool | write_binary (std::ostream &, BaseExporter &, const Options &_writeOptions) const |
|
size_t | store_binary_custom_chunk (std::ostream &, BaseProperty &, OMFormat::Chunk::Entity, bool) const |
|
bool | check (BaseExporter &_be, const Options &_writeOptions) const |
|
|
static const OMFormat::uchar | magic_ [3] = "OM" |
|
static const OMFormat::uint8 | version_ = OMFormat::mk_version(2,2) |
|
|
typedef unsigned int | Option |
|
Implementation of the OM format writer.
This class is singleton'ed by SingletonT to OMWriter.
◆ binary_size()
◆ get_description()
std::string OpenMesh::IO::_OMWriter_::get_description |
( |
| ) |
const |
|
inlineoverridevirtual |
◆ get_extensions()
std::string OpenMesh::IO::_OMWriter_::get_extensions |
( |
| ) |
const |
|
inlineoverridevirtual |
◆ write() [1/2]
bool OpenMesh::IO::_OMWriter_::write |
( |
const std::string & |
_filename, |
|
|
BaseExporter & |
_be, |
|
|
const Options & |
_writeOptions, |
|
|
std::streamsize |
_precision = 6 |
|
) |
| const |
|
overrideprotectedvirtual |
Write to a file.
- Parameters
-
_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.
◆ write() [2/2]
bool OpenMesh::IO::_OMWriter_::write |
( |
std::ostream & |
_os, |
|
|
BaseExporter & |
_be, |
|
|
const Options & |
_writeOptions, |
|
|
std::streamsize |
_precision = 6 |
|
) |
| const |
|
overridevirtual |
Write to a std::ostream.
- Parameters
-
_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.
The documentation for this class was generated from the following files:
- OpenMesh/Core/IO/writer/OMWriter.hh
- OpenMesh/Core/IO/writer/OMWriter.cc