cgal/Packages/Kernel_23
Lutz Kettner b869dc02cc . 2004-05-04 12:47:19 +00:00
..
doc_tex . 2004-05-04 12:47:19 +00:00
examples/Kernel_23 fixed headers in examples 2004-02-19 11:25:39 +00:00
include/CGAL Move the following to the new scheme : 2004-03-16 21:59:52 +00:00
src typo Saarbrucken -> Saarbruecken 2003-10-21 12:26:15 +00:00
test/Kernel Move the following to the new scheme : 2004-03-16 21:59:52 +00:00
README update 2003-01-22 10:08:12 +00:00
changes.txt - Fix doc typo : Leftturn_2 -> Left_turn_2. 2004-04-09 15:20:39 +00:00
description.txt - update stuff after the merge. 2003-01-07 16:44:16 +00:00
dont_submit - update stuff after the merge. 2003-01-07 16:44:16 +00:00
maintainer back to INRIA :) 2003-07-22 16:07:23 +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.