|
CGAL 4.11.1 - IO Streams
|
Namespaces | |
| cpp11 | |
| IO | |
| Properties | |
| Scale_space_reconstruction_3 | |
| Shape_detection_3 | |
| Surface_mesh_parameterization | |
Functions | |
| IO::Mode | get_mode (std::ios &s) |
returns the printing mode of the IO stream s. More... | |
| IO::Mode | set_ascii_mode (std::ios &s) |
sets the mode of the IO stream s to be the IO::ASCII mode. More... | |
| IO::Mode | set_binary_mode (std::ios &s) |
| IO::Mode | set_mode (std::ios &s, IO::Mode m) |
sets the printing mode of the IO stream s. More... | |
| IO::Mode | set_pretty_mode (std::ios &s) |
sets the mode of the IO stream s to be the IO::PRETTY mode. More... | |
| bool | is_ascii (std::ios &s) |
checks if the IO stream s is in IO::ASCII mode. More... | |
| bool | is_binary (std::ios &s) |
checks if the IO stream s is in IO::BINARY mode. More... | |
| bool | is_pretty (std::ios &s) |
checks if the IO stream s is in IO::PRETTY mode. More... | |
| template<class T > | |
| Output_rep< T > | oformat (const T &t) |
Convenience function to construct an output representation (Output_rep) for type T. More... | |
| template<class T > | |
| Input_rep< T > | iformat (const T &t) |
The definition of this function is completely symmetric to oformat(). | |
| template<class T , typename F > | |
| Output_rep< T, F > | oformat (const T &t, F) |
Convenience function to construct an output representation (Output_rep) for type T. More... | |
| ostream & | operator<< (ostream &os, Class c) |
Inserts object c in the stream os. More... | |
| istream & | operator>> (istream &is, Class c) |
CGAL defines input operators for classes that are derived from the class istream. More... | |