mirror of https://github.com/CGAL/cgal
19 lines
473 B
C++
19 lines
473 B
C++
#ifndef CGAL_INTERFACE_CLASSES_H
|
|
#define CGAL_INTERFACE_CLASSES_H
|
|
|
|
CGAL_BEGIN_NAMESPACE
|
|
|
|
template <class R> class Point_d;
|
|
template <class R> class Vector_d;
|
|
template <class R> class Direction_d;
|
|
template <class R> class Hyperplane_d;
|
|
template <class R> class Sphere_d;
|
|
template <class R> class Segment_d;
|
|
template <class R> class Ray_d;
|
|
template <class R> class Line_d;
|
|
template <class R> class Aff_transformation_d;
|
|
|
|
CGAL_END_NAMESPACE
|
|
|
|
#endif //CGAL_INTERFACE_CLASSES_H
|