cgal/Kernel_23
Sylvain Pion 7dcfe00529 - Move documentation of Boolean_tag<bool>, Tag_true and Tag_false
to STL_Extension.
2007-02-09 17:13:47 +00:00
..
doc_tex - Move documentation of Boolean_tag<bool>, Tag_true and Tag_false 2007-02-09 17:13:47 +00:00
examples/Kernel_23 workaround for min/max problem 2006-11-11 17:34:54 +00:00
include/CGAL Removed template member function. It is not clear why it is needed and causes trouble for the Circular_kernel_3 testsuite for VC++ 2007-02-01 16:18:38 +00:00
src/CGAL Use .cpp file extension instead of .C for src/*/* files. 2006-04-14 09:19:29 +00:00
test/Kernel_23 Remove makefile, and rename .C to .cpp 2007-01-27 20:04:06 +00:00
README Move packages to trunk root 2006-02-14 08:58:16 +00:00
changes.txt removed specializations of Pairify for Comparison_result and 2006-07-21 11:21:56 +00:00
description.txt Move packages to trunk root 2006-02-14 08:58:16 +00:00
dont_submit Move packages to trunk root 2006-02-14 08:58:16 +00:00
maintainer Move packages to trunk root 2006-02-14 08:58:16 +00:00

README

When adding a new function object to the kernel you must:

  -- possibly change include/CGAL/Kernel/function_objects.h
     to add a new function object "builder" in namespace CGALi::
  -- change include/CGAL/Kernel/interface_macros.h
     to add the actual function object class and its corresponding 
     member function that returns an object of this class 
  -- change test/Kernel/include/CGAL/_test_new_2.h and/or
     test/Kernel/include/CGAL/_test_new_3.h to add the test
     for this function object.
  -- in the directory doc_tex/kernel/Ref add a file called
     Kernel_<NewFunctionObject> that describes the requirements for
     this function object type (see the other similarly named files in this
     directory)
      -- This functor should have a SeeAlso entry for the global function(s)
         or class(es) that provide the same functionality in the imperative
         interface
  -- add <New_function_object> to the set of requirements for the Kernel
     concept in the file doc_tex/kernel/Ref/Kernel.tex.  
  -- in the file doc_tex/kernel/Ref/ref_manual.tex add the command
        \input{Ref/Kernel_<New function object>} 
     in the proper place 
  -- in the file doc_tex/kernel/kernel_toc add a ccRefConceptPage command
     for the page in the proper place.