More consts

This commit is contained in:
Jan Möbius
2023-08-23 13:37:08 +02:00
parent 3b27aaf2db
commit 281d691ea7
2 changed files with 2 additions and 2 deletions

View File

@@ -252,7 +252,7 @@ void _PLYWriter_::write_customProp(std::ostream& _out, const CustomProperty& _pr
void _PLYWriter_::write_header(std::ostream& _out, BaseExporter& _be, Options& _opt, std::vector<CustomProperty>& _ovProps, std::vector<CustomProperty>& _ofProps) const {
void _PLYWriter_::write_header(std::ostream& _out, const BaseExporter& _be, Options& _opt, std::vector<CustomProperty>& _ovProps, std::vector<CustomProperty>& _ofProps) const {
//writing header
_out << "ply" << '\n';

View File

@@ -153,7 +153,7 @@ protected:
bool write_ascii(std::ostream& _out, BaseExporter&, Options) const;
bool write_binary(std::ostream& _out, BaseExporter&, Options) const;
/// write header into the stream _out. Returns custom properties (vertex and face) which are written into the header
void write_header(std::ostream& _out, BaseExporter& _be, Options& _opt, std::vector<CustomProperty>& _ovProps, std::vector<CustomProperty>& _ofProps) const;
void write_header(std::ostream& _out, const BaseExporter& _be, Options& _opt, std::vector<CustomProperty>& _ovProps, std::vector<CustomProperty>& _ofProps) const;
};