From e3d0e11b1e37baf1249b60f888922da5284356ba Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Wed, 1 Feb 2017 11:03:52 +0100 Subject: [PATCH] Fix headers --- .../CGAL/IO/Qt_widget_Conic_arc_2.h | 9 --------- .../CGAL/IO/Qt_widget_Polyline_2.h | 12 ------------ ...h => Complex_2_in_triangulation_3_file_writer.h} | 10 ++++++++++ .../doc/Surface_mesher/CGAL/IO/Io_option.h | 13 ------------- 4 files changed, 10 insertions(+), 34 deletions(-) delete mode 100644 Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/IO/Qt_widget_Conic_arc_2.h delete mode 100644 Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/IO/Qt_widget_Polyline_2.h rename Surface_mesher/doc/Surface_mesher/CGAL/IO/{output_surface_facets_to_off.h => Complex_2_in_triangulation_3_file_writer.h} (76%) delete mode 100644 Surface_mesher/doc/Surface_mesher/CGAL/IO/Io_option.h diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/IO/Qt_widget_Conic_arc_2.h b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/IO/Qt_widget_Conic_arc_2.h deleted file mode 100644 index 4e2807cebf1..00000000000 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/IO/Qt_widget_Conic_arc_2.h +++ /dev/null @@ -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 -Qt_widget& operator<< (std::ostream& os, - const _Conic_x_monotone_arc_2& cv); diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/IO/Qt_widget_Polyline_2.h b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/IO/Qt_widget_Polyline_2.h deleted file mode 100644 index 34e49b43fcc..00000000000 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/IO/Qt_widget_Polyline_2.h +++ /dev/null @@ -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 -Qt_widget& operator<< (std::ostream& os, - const Polyline_2& polyline); -} diff --git a/Surface_mesher/doc/Surface_mesher/CGAL/IO/output_surface_facets_to_off.h b/Surface_mesher/doc/Surface_mesher/CGAL/IO/Complex_2_in_triangulation_3_file_writer.h similarity index 76% rename from Surface_mesher/doc/Surface_mesher/CGAL/IO/output_surface_facets_to_off.h rename to Surface_mesher/doc/Surface_mesher/CGAL/IO/Complex_2_in_triangulation_3_file_writer.h index 157bec48164..8e20411609e 100644 --- a/Surface_mesher/doc/Surface_mesher/CGAL/IO/output_surface_facets_to_off.h +++ b/Surface_mesher/doc/Surface_mesher/CGAL/IO/Complex_2_in_triangulation_3_file_writer.h @@ -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 */ diff --git a/Surface_mesher/doc/Surface_mesher/CGAL/IO/Io_option.h b/Surface_mesher/doc/Surface_mesher/CGAL/IO/Io_option.h deleted file mode 100644 index ed2af1c8796..00000000000 --- a/Surface_mesher/doc/Surface_mesher/CGAL/IO/Io_option.h +++ /dev/null @@ -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 }; - - } -}