CGAL 4.14 - 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 | ||
) |
#include <CGAL/IO/io.h>
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.
istream& CGAL::operator>> | ( | istream & | is, |
Class | c | ||
) |
#include <CGAL/IO/io.h>
CGAL defines input operators for classes that are derived from the class istream
.
This allows to read from istreams as std::cin
, as well as from std::istringstream
and std::ifstream
. The input operator is defined for all classes in the CGAL Kernel
.