CGAL 4.8.1 - IO Streams
|
Functions | |
ostream & | CGAL::operator<< (ostream &os, Class c) |
Inserts object c in the stream os . More... | |
istream & | CGAL::operator>> (istream &is, Class c) |
CGAL defines input operators for classes that are derived from the class istream . More... | |
ostream& CGAL::operator<< | ( | ostream & | os, |
Class | c | ||
) |
Inserts object c
in the stream os
.
Returns os
.
CGAL defines output operators for classes that are derived from the class ostream
. This allows to write to ostreams as cout
or cerr
, as well as to std::ostringstream
and std::ofstream
. The output operator is defined for all classes in the CGAL Kernel
and for the class Color
as well.
CGAL::set_mode()
CGAL::set_ascii_mode()
CGAL::set_binary_mode()
CGAL::set_pretty_mode()
CGAL::get_mode()
CGAL::is_ascii()
CGAL::is_binary()
CGAL::is_pretty()
#include <CGAL/IO/io.h>
istream& CGAL::operator>> | ( | istream & | is, |
Class | c | ||
) |
CGAL defines input operators for classes that are derived from the class istream
.
This allows to read from istreams as cin
, as well as from std::istringstream
and std::ifstream
. The input operator is defined for all classes in the CGAL Kernel
.
CGAL::set_mode()
CGAL::set_ascii_mode()
CGAL::set_binary_mode()
CGAL::set_pretty_mode()
CGAL::get_mode()
CGAL::is_ascii()
CGAL::is_binary()
CGAL::is_pretty()
#include <CGAL/IO/io.h>