mirror of https://github.com/CGAL/cgal
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
// ======================================================================
|
|
//
|
|
// Copyright (c) 1997-2000 The CGAL Consortium
|
|
//
|
|
// This software and related documentation is part of an INTERNAL release
|
|
// of the Computational Geometry Algorithms Library (CGAL). It is not
|
|
// intended for general use.
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
//
|
|
// release : $CGAL_Revision: CGAL-2.4-I-64 $
|
|
// release_date : $CGAL_Date: 2002/03/18 $
|
|
//
|
|
// file : include/CGAL/Kernel_d/Kernel_classesCd.h
|
|
// package : Kernel_d (0.9.54)
|
|
// maintainer : Michael Seel <seel@mpi-sb.mpg.de>
|
|
// chapter : Basic
|
|
//
|
|
// revision : $Revision$
|
|
// revision_date : $Date$
|
|
//
|
|
// author(s) : Michael Seel <seel@mpi-sb.mpg.de>
|
|
// coordinator : Susan Hert <hert@mpi-sb.mpg.de>
|
|
//
|
|
// implementation: Cartesian kernel classes
|
|
// ======================================================================
|
|
|
|
#ifndef CGAL_KERNEL_CLASSESCD_H
|
|
#define CGAL_KERNEL_CLASSESCD_H
|
|
|
|
CGAL_BEGIN_NAMESPACE
|
|
|
|
template <typename FT, typename LA> class PointCd2;
|
|
template <typename FT, typename LA> class VectorCd;
|
|
template <typename FT, typename LA> class DirectionCd;
|
|
template <typename FT, typename LA> class HyperplaneCd;
|
|
template <typename FT, typename LA> class Aff_transformationCd;
|
|
|
|
CGAL_END_NAMESPACE
|
|
|
|
#endif //CGAL_KERNEL_CLASSESCD_H
|