changed .C to .cpp in examples

This commit is contained in:
Andreas Fabri 2006-07-09 19:11:05 +00:00
parent 7c35af5023
commit b7e95f6617
7 changed files with 7 additions and 7 deletions

View File

@ -82,8 +82,8 @@ on a \stl\ vector with three elements. The resulting vector will be
{\tt [2 5 9]} as it is checked by the assertions. The program is
part of the \cgal\ distribution.
%\ccIncludeExampleCode{examples/Circulator/circulator_prog2.C}
\ccIncludeExampleCode{Circulator/circulator_prog2.C}
%\ccIncludeExampleCode{examples/Circulator/circulator_prog2.cpp}
\ccIncludeExampleCode{Circulator/circulator_prog2.cpp}
\end{ccRefClass}

View File

@ -78,8 +78,8 @@ on a \stl\ vector containing three elements. The resulting vector will
be {\tt [2 5 9]} as it is checked by the assertions. The program is
part of the \cgal\ distribution.
%\ccIncludeExampleCode{examples/Circulator/circulator_prog1.C}
\ccIncludeExampleCode{Circulator/circulator_prog1.C}
%\ccIncludeExampleCode{examples/Circulator/circulator_prog1.cpp}
\ccIncludeExampleCode{Circulator/circulator_prog1.cpp}
Another example usage for this adaptor is a random access circulator
over the built-in C arrays. Given an array of type {\tt T*} with a

View File

@ -131,8 +131,8 @@ assertions can be used to protect a templatized algorithm against
instantiations that do not fulfill the requirements. The following
example program illustrates both.
%\ccIncludeExampleCode{examples/Circulator/circulator_prog3.C}
\ccIncludeExampleCode{Circulator/circulator_prog3.C}
%\ccIncludeExampleCode{examples/Circulator/circulator_prog3.cpp}
\ccIncludeExampleCode{Circulator/circulator_prog3.cpp}
\ccImplementation

View File

@ -58,6 +58,6 @@ clean: \
# suffix rules
#---------------------------------------------------------------------#
.C$(OBJ_EXT):
.cpp$(OBJ_EXT):
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<