Added definitions from .C file to .h file so that automatic template inclusion can work

This commit is contained in:
Andreas Fabri 2003-10-04 16:43:52 +00:00
parent 256a449ef0
commit e3b6afd58d
1 changed files with 8 additions and 3 deletions

View File

@ -28,13 +28,18 @@
CGAL_BEGIN_NAMESPACE
namespace CGALi {
template <class K>
Object
intersection(const typename CGAL_WRAP(K)::Triangle_2 &tr1,
const typename CGAL_WRAP(K)::Triangle_2 &tr2,
const K& k);
} // namespace CGALi
template <class R>
Object
intersection(const Triangle_2<R> &tr1, const Triangle_2<R>&tr2);
// template <class R>
// bool
// do_intersect(const Triangle_2<R> &tr1, const Triangle_2<R>&tr2);
CGAL_END_NAMESPACE