From 9de8bc34da2e7b4e677c85f61ad6e275927defe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20M=C3=B6ller?= Date: Fri, 5 Oct 2012 14:19:59 +0000 Subject: [PATCH] Fix links to operators --- Stream_support/doc/IOstream/CGAL/IO/io.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Stream_support/doc/IOstream/CGAL/IO/io.h b/Stream_support/doc/IOstream/CGAL/IO/io.h index abeaf3bf8d6..2a2a909a2c7 100644 --- a/Stream_support/doc/IOstream/CGAL/IO/io.h +++ b/Stream_support/doc/IOstream/CGAL/IO/io.h @@ -238,7 +238,9 @@ template Output_rep oformat( const T& t, F ); /*! \ingroup PkgIOstreams -Inserts object `c` in the stream `os`. Returns `os`. +\anchor op_left_shift + +\brief 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 @@ -284,14 +286,17 @@ return 1; \sa `CGAL::is_ascii` \sa `CGAL::is_binary` \sa `CGAL::is_pretty` -\sa `CGAL::operator>>` +\sa \ref op_right_shift "CGAL::operator>>" + */ ostream& operator<<(ostream& os, Class c); /*! \ingroup PkgIOstreams -\cgal defines input operators for classes that are derived +\anchor op_right_shift + +\brief \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 strstreams and fstreams. The input operator is defined for all classes in the \cgal kernel. @@ -333,7 +338,7 @@ main() \sa `CGAL::is_ascii` \sa `CGAL::is_binary` \sa `CGAL::is_pretty` -\sa `CGAL::operator<<` +\sa \ref op_left_shift "CGAL::operator<<" */ istream& operator>>(istream& is, Class c);