Implementation of the OM format writer.
More...
#include <OpenMesh/Core/IO/writer/OMWriter.hh>
Public Member Functions |
| _OMWriter_ () |
| Constructor.
|
virtual | ~_OMWriter_ () |
| Destructor.
|
std::string | get_description () const |
| Return short description of the supported file format.
|
std::string | get_extensions () const |
| Return file format's extension.
|
bool | write (std::ostream &, BaseExporter &, Options, std::streamsize _precision=6) const |
| Write to a std::ostream.
|
size_t | binary_size (BaseExporter &_be, Options _opt) const |
| Returns expected size of file if binary format is supported else 0.
|
virtual | ~BaseWriter () |
| Destructor.
|
virtual bool | can_u_write (const std::string &_filename) const |
| Returns true if writer can parse _filename (checks extension)
|
Static Protected Attributes |
static const OMFormat::uchar | magic_ [3] = "OM" |
static const OMFormat::uint8 | version_ = OMFormat::mk_version(1,2) |
Additional Inherited Members |
typedef unsigned int | Option |
Detailed Description
Implementation of the OM format writer.
This class is singleton'ed by SingletonT to OMWriter.
Member Function Documentation
bool OpenMesh::IO::_OMWriter_::write |
( |
std::ostream & |
_os, |
|
|
BaseExporter & |
_be, |
|
|
Options |
_opt, |
|
|
std::streamsize |
_precision = 6 |
|
) |
| const |
|
virtual |
Write to a std::ostream.
- Parameters
-
_os | write to std::ostream |
_be | BaseExporter, which specifies the data source |
_opt | writing options |
_precision | can be used to specify the precision of the floating point notation. |
Implements OpenMesh::IO::BaseWriter.
bool OpenMesh::IO::_OMWriter_::write |
( |
const std::string & |
_filename, |
|
|
BaseExporter & |
_be, |
|
|
Options |
_opt, |
|
|
std::streamsize |
_precision = 6 |
|
) |
| const |
|
protectedvirtual |
Write to a file.
- Parameters
-
_filename | write to file with the given filename |
_be | BaseExporter, which specifies the data source |
_opt | 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