More consts
This commit is contained in:
@@ -291,7 +291,7 @@ bool _OMReader_::supports(const OMFormat::uint8 /* version */) const
|
|||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
bool _OMReader_::read_binary_vertex_chunk(std::istream &_is, BaseImporter &_bi, Options &_opt, bool _swap) const
|
bool _OMReader_::read_binary_vertex_chunk(std::istream &_is, BaseImporter &_bi, const Options &_opt, bool _swap) const
|
||||||
{
|
{
|
||||||
using OMFormat::Chunk;
|
using OMFormat::Chunk;
|
||||||
|
|
||||||
@@ -447,7 +447,7 @@ bool _OMReader_::read_binary_vertex_chunk(std::istream &_is, BaseImporter &_bi,
|
|||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
bool _OMReader_::read_binary_face_chunk(std::istream &_is, BaseImporter &_bi, Options &_opt, bool _swap) const
|
bool _OMReader_::read_binary_face_chunk(std::istream &_is, BaseImporter &_bi, const Options &_opt, bool _swap) const
|
||||||
{
|
{
|
||||||
using OMFormat::Chunk;
|
using OMFormat::Chunk;
|
||||||
|
|
||||||
@@ -589,7 +589,7 @@ bool _OMReader_::read_binary_face_chunk(std::istream &_is, BaseImporter &_bi, Op
|
|||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
bool _OMReader_::read_binary_edge_chunk(std::istream &_is, BaseImporter &_bi, Options &_opt, bool _swap) const
|
bool _OMReader_::read_binary_edge_chunk(std::istream &_is, BaseImporter &_bi, const Options &_opt, bool _swap) const
|
||||||
{
|
{
|
||||||
using OMFormat::Chunk;
|
using OMFormat::Chunk;
|
||||||
|
|
||||||
@@ -641,7 +641,7 @@ bool _OMReader_::read_binary_edge_chunk(std::istream &_is, BaseImporter &_bi, Op
|
|||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
bool _OMReader_::read_binary_halfedge_chunk(std::istream &_is, BaseImporter &_bi, Options & _opt, bool _swap) const
|
bool _OMReader_::read_binary_halfedge_chunk(std::istream &_is, BaseImporter &_bi, const Options & _opt, bool _swap) const
|
||||||
{
|
{
|
||||||
using OMFormat::Chunk;
|
using OMFormat::Chunk;
|
||||||
|
|
||||||
@@ -749,7 +749,7 @@ bool _OMReader_::read_binary_halfedge_chunk(std::istream &_is, BaseImporter &_bi
|
|||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
bool _OMReader_::read_binary_mesh_chunk(std::istream &_is, BaseImporter &_bi, Options& _opt , bool _swap) const
|
bool _OMReader_::read_binary_mesh_chunk(std::istream &_is, BaseImporter &_bi, const Options& _opt , bool _swap) const
|
||||||
{
|
{
|
||||||
using OMFormat::Chunk;
|
using OMFormat::Chunk;
|
||||||
|
|
||||||
|
|||||||
@@ -126,27 +126,27 @@ private:
|
|||||||
|
|
||||||
bool read_binary_vertex_chunk( std::istream &_is,
|
bool read_binary_vertex_chunk( std::istream &_is,
|
||||||
BaseImporter &_bi,
|
BaseImporter &_bi,
|
||||||
Options &_opt,
|
const Options &_opt,
|
||||||
bool _swap) const;
|
bool _swap) const;
|
||||||
|
|
||||||
bool read_binary_face_chunk( std::istream &_is,
|
bool read_binary_face_chunk( std::istream &_is,
|
||||||
BaseImporter &_bi,
|
BaseImporter &_bi,
|
||||||
Options &_opt,
|
const Options &_opt,
|
||||||
bool _swap) const;
|
bool _swap) const;
|
||||||
|
|
||||||
bool read_binary_edge_chunk( std::istream &_is,
|
bool read_binary_edge_chunk( std::istream &_is,
|
||||||
BaseImporter &_bi,
|
BaseImporter &_bi,
|
||||||
Options &_opt,
|
const Options &_opt,
|
||||||
bool _swap) const;
|
bool _swap) const;
|
||||||
|
|
||||||
bool read_binary_halfedge_chunk( std::istream &_is,
|
bool read_binary_halfedge_chunk( std::istream &_is,
|
||||||
BaseImporter &_bi,
|
BaseImporter &_bi,
|
||||||
Options &_opt,
|
const Options &_opt,
|
||||||
bool _swap) const;
|
bool _swap) const;
|
||||||
|
|
||||||
bool read_binary_mesh_chunk( std::istream &_is,
|
bool read_binary_mesh_chunk( std::istream &_is,
|
||||||
BaseImporter &_bi,
|
BaseImporter &_bi,
|
||||||
Options &_opt,
|
const Options &_opt,
|
||||||
bool _swap) const;
|
bool _swap) const;
|
||||||
|
|
||||||
size_t restore_binary_custom_data(std::istream& _is,
|
size_t restore_binary_custom_data(std::istream& _is,
|
||||||
|
|||||||
Reference in New Issue
Block a user