Fix headers

This commit is contained in:
Maxime Gimeno 2017-02-01 11:03:52 +01:00
parent 1c1999411b
commit e3d0e11b1e
4 changed files with 10 additions and 34 deletions

View File

@ -1,9 +0,0 @@
/*!
\ingroup PkgArrangement2op_left_shift
Inserts a conic arc into a given `Qt_widget` stream.
Only the basic geometric and topological features of the conic arcs are
written. Auxiliary data that might be attached is lost.
*/
template<typename ConicArc>
Qt_widget& operator<< (std::ostream& os,
const _Conic_x_monotone_arc_2<ConicArc>& cv);

View File

@ -1,12 +0,0 @@
namespace CGAL {
/*!
\ingroup PkgArrangement2op_left_shift
Inserts a polyline into a given `Qt_widget` stream.
Only the basic geometric and topological features of the polylines are
written. Auxiliary data that might be attached is lost.
*/
template<typename SegmentTraits>
Qt_widget& operator<< (std::ostream& os,
const Polyline_2<SegmentTraits>& polyline);
}

View File

@ -29,5 +29,15 @@ bool output_surface_facets_to_off (std::ostream& os,
int options =
Surface_mesher::IO_ORIENT_SURFACE);
namespace Surface_mesher {
/*!
\ingroup PkgSurfaceMesher3FunctionsIO
Options for function `output_surface_facets_to_off()`.
*/
enum IO_option { NO_OPTION = 0,
IO_ORIENT_SURFACE = 1,
IO_VERBOSE = 2 };
} /* namespace Surface_mesher */
} /* namespace CGAL */

View File

@ -1,13 +0,0 @@
namespace CGAL {
namespace Surface_mesher {
/*!
\ingroup PkgSurfaceMesher3FunctionsIO
Options for function `output_surface_facets_to_off()`.
*/
enum IO_option { NO_OPTION = 0,
IO_ORIENT_SURFACE = 1,
IO_VERBOSE = 2 };
}
}