From 28e9481ffbb48ccb453da5a3c39d6a9bdb1debe6 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Sun, 9 Jul 2006 19:42:19 +0000 Subject: [PATCH] changed .C to .cpp in examples --- .../demo/Segment_Delaunay_graph_2/makefile | 6 +++--- ...ygon_delaunay_graph_2.C => polygon_delaunay_graph_2.cpp} | 0 ...ment_delaunay_graph_2.C => segment_delaunay_graph_2.cpp} | 0 .../doc_tex/Segment_Delaunay_graph_2/Sdg_2_examples.tex | 6 +++--- .../{sdg-count-sites.C => sdg-count-sites.cpp} | 0 .../{sdg-filtered-traits.C => sdg-filtered-traits.cpp} | 0 .../{sdg-voronoi-edges.C => sdg-voronoi-edges.cpp} | 0 7 files changed, 6 insertions(+), 6 deletions(-) rename Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/{polygon_delaunay_graph_2.C => polygon_delaunay_graph_2.cpp} (100%) rename Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/{segment_delaunay_graph_2.C => segment_delaunay_graph_2.cpp} (100%) rename Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/{sdg-count-sites.C => sdg-count-sites.cpp} (100%) rename Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/{sdg-filtered-traits.C => sdg-filtered-traits.cpp} (100%) rename Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/{sdg-voronoi-edges.C => sdg-voronoi-edges.cpp} (100%) diff --git a/Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/makefile b/Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/makefile index e99f1bf1212..1492c751384 100644 --- a/Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/makefile +++ b/Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/makefile @@ -48,7 +48,7 @@ my_window.moc: my_window.h qt_layers.h qt_layers_toolbar.h $(QT_MOC) -o my_window.moc my_window.h -polygon_delaunay_graph_2$(OBJ_EXT): polygon_delaunay_graph_2.C \ +polygon_delaunay_graph_2$(OBJ_EXT): polygon_delaunay_graph_2.cpp \ pdg_typedefs.h include/pdg_insert.h include/pdg_draw.h \ include/CGAL/Segment_Delaunay_graph_vertex_base_with_info_2.h \ my_window.moc qt_file_toolbar.moc qt_layers_toolbar.moc @@ -58,7 +58,7 @@ polygon_delaunay_graph_2$(EXE_EXT): polygon_delaunay_graph_2$(OBJ_EXT) polygon_delaunay_graph_2$(OBJ_EXT) $(LDFLAGS) -segment_delaunay_graph_2$(OBJ_EXT): segment_delaunay_graph_2.C \ +segment_delaunay_graph_2$(OBJ_EXT): segment_delaunay_graph_2.cpp \ typedefs.h include/sdg_insert.h include/sdg_draw.h \ my_window.moc qt_file_toolbar.moc qt_layers_toolbar.moc @@ -74,6 +74,6 @@ clean: \ # suffix rules #---------------------------------------------------------------------# -.C$(OBJ_EXT): +.cpp$(OBJ_EXT): $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $< diff --git a/Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/polygon_delaunay_graph_2.C b/Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/polygon_delaunay_graph_2.cpp similarity index 100% rename from Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/polygon_delaunay_graph_2.C rename to Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/polygon_delaunay_graph_2.cpp diff --git a/Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/segment_delaunay_graph_2.C b/Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/segment_delaunay_graph_2.cpp similarity index 100% rename from Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/segment_delaunay_graph_2.C rename to Segment_Delaunay_graph_2/demo/Segment_Delaunay_graph_2/segment_delaunay_graph_2.cpp diff --git a/Segment_Delaunay_graph_2/doc_tex/Segment_Delaunay_graph_2/Sdg_2_examples.tex b/Segment_Delaunay_graph_2/doc_tex/Segment_Delaunay_graph_2/Sdg_2_examples.tex index 41d3e961c77..72af6608b43 100644 --- a/Segment_Delaunay_graph_2/doc_tex/Segment_Delaunay_graph_2/Sdg_2_examples.tex +++ b/Segment_Delaunay_graph_2/doc_tex/Segment_Delaunay_graph_2/Sdg_2_examples.tex @@ -28,7 +28,7 @@ addition it shows how to use a few of the iterators provided by the \ccc{Segment_Delaunay_graph_2} class in order to count a few site-related quantities. -\ccIncludeExampleCode{Segment_Delaunay_graph_2/sdg-count-sites.C} +\ccIncludeExampleCode{Segment_Delaunay_graph_2/sdg-count-sites.cpp} \subsection{Second Example} @@ -36,7 +36,7 @@ The following example shows how to use the segment Delaunay graph hierarchy along with the filtered traits class that supports intersecting sites. -\ccIncludeExampleCode{Segment_Delaunay_graph_2/sdg-filtered-traits.C} +\ccIncludeExampleCode{Segment_Delaunay_graph_2/sdg-filtered-traits.cpp} \subsection{Third Example} @@ -44,5 +44,5 @@ The following example demonstrates how to recover the defining sites for the edges of the Voronoi diagram (which are the duals of the edges of the segment Delaunay graph computed). -\ccIncludeExampleCode{Segment_Delaunay_graph_2/sdg-voronoi-edges.C} +\ccIncludeExampleCode{Segment_Delaunay_graph_2/sdg-voronoi-edges.cpp} diff --git a/Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-count-sites.C b/Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-count-sites.cpp similarity index 100% rename from Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-count-sites.C rename to Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-count-sites.cpp diff --git a/Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-filtered-traits.C b/Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-filtered-traits.cpp similarity index 100% rename from Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-filtered-traits.C rename to Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-filtered-traits.cpp diff --git a/Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-voronoi-edges.C b/Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-voronoi-edges.cpp similarity index 100% rename from Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-voronoi-edges.C rename to Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-voronoi-edges.cpp