|
Mode | get_mode (std::ios &s) |
| returns the printing mode of the IO stream s . More...
|
|
Mode | set_ascii_mode (std::ios &s) |
| sets the mode of the IO stream s to be the ASCII mode. More...
|
|
Mode | set_binary_mode (std::ios &s) |
|
Mode | set_mode (std::ios &s, IO::Mode m) |
| sets the printing mode of the IO stream s . More...
|
|
Mode | set_pretty_mode (std::ios &s) |
| sets the mode of the IO stream s to be the PRETTY mode. More...
|
|
bool | is_ascii (std::ios &s) |
| checks if the IO stream s is in ASCII mode. More...
|
|
bool | is_binary (std::ios &s) |
| checks if the IO stream s is in BINARY mode. More...
|
|
bool | is_pretty (std::ios &s) |
| checks if the IO stream s is in 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...
|
|