cgal/Kernel_23
Sébastien Loriot f0f34d45fa workaround to force the usage of the tr1 implementation of result_of from boost
see http://www.boost.org/doc/libs/1_52_0/libs/utility/utility.htm#result_of
2013-02-04 11:30:28 +01:00
..
doc/Kernel_23 add naming convention and dimension to the sections 2013-01-31 21:17:51 +01:00
doc_tex backporting documentation changes of master@9fcc5b57 into doxy-port-pmoeller 2012-11-23 22:54:31 +01:00
examples/Kernel_23 split MyPointC2.h into several .h files so that we can use 2011-01-18 17:04:26 +00:00
include/CGAL workaround to force the usage of the tr1 implementation of result_of from boost 2013-02-04 11:30:28 +01:00
package_info/Kernel_23 Add license files, per package 2012-01-16 15:54:22 +00:00
src/CGAL change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
test/Kernel_23 Remove use.h from Kernel_23/test 2012-08-09 08:48:36 +00:00
README Rename CGALi to internal. 2009-08-24 17:10:04 +00:00
dont_submit add doc in dont_submit 2012-11-27 08:42:02 +01: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 internal::
  -- 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.