51#ifndef OPENMESH_BINARY_HELPER_HH
52#define OPENMESH_BINARY_HELPER_HH
57#include <OpenMesh/Core/System/config.h>
59#if defined( OM_CC_MIPS )
136void write_short(
short int _i, std::ostream& _out,
bool _swap=
false);
140void write_int(
int _i, std::ostream& _out,
bool _swap=
false);
Contains all the mesh ingredients like the polygonal mesh, the triangle mesh, different mesh kernels ...
Definition: MeshItems.hh:59
short int read_short(FILE *_in, bool _swap=false)
Binary read a short from _is and perform byte swapping if _swap is true.
float read_float(FILE *_in, bool _swap=false)
Binary read a float from _is and perform byte swapping if _swap is true.
void write_int(int _i, FILE *_out, bool _swap=false)
Binary write an int to _os and perform byte swapping if _swap is true.
void write_double(double _d, FILE *_out, bool _swap=false)
Binary write a double to _os and perform byte swapping if _swap is true.
void write_short(short int _i, FILE *_out, bool _swap=false)
Binary write a short to _os and perform byte swapping if _swap is true.
int read_int(FILE *_in, bool _swap=false)
Binary read an int from _is and perform byte swapping if _swap is true.
double read_double(FILE *_in, bool _swap=false)
Binary read a double from _is and perform byte swapping if _swap is true.
void write_float(float _f, FILE *_out, bool _swap=false)
Binary write a float to _os and perform byte swapping if _swap is true.