cgal/Kernel_23
Sébastien Loriot b65aa72c49 has_on circle for plane_3 2009-06-25 05:55:14 +00:00
..
doc_tex fix operator pb display Circle_3 2009-02-05 12:58:39 +00:00
examples/Kernel_23 Removed hand-made example cmake scripts 2008-09-04 18:58:48 +00:00
include/CGAL has_on circle for plane_3 2009-06-25 05:55:14 +00:00
package_info/Kernel_23 Remove changes.txt files. 2008-07-24 17:47:16 +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 Mark most one-argument constructors explicit. 2009-05-09 16:08:19 +00:00
README
dont_submit - Remove cgal_test from dont_submit as they are not under SVN anymore. 2007-03-06 10:04:41 +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.