25 lines
635 B
C
25 lines
635 B
C
|
// Copyright (C) 2018 GeometryFactory Sarl
|
||
|
//
|
||
|
// This file is part of CGAL (www.cgal.org)
|
||
|
//
|
||
|
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Installation/include/CGAL/Kernel_traits_fwd.h $
|
||
|
// $Id: Kernel_traits_fwd.h 52164b1 2019-10-19T15:34:59+02:00 Sébastien Loriot
|
||
|
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
|
||
|
//
|
||
|
|
||
|
#ifndef CGAL_KERNEL_TRAITS_FWD_H
|
||
|
#define CGAL_KERNEL_TRAITS_FWD_H
|
||
|
|
||
|
/// \file Kernel_traits_fwd.h
|
||
|
/// Forward declarations of the `Kernel_traits` class.
|
||
|
|
||
|
#ifndef DOXYGEN_RUNNING
|
||
|
namespace CGAL {
|
||
|
|
||
|
template <class T> struct Kernel_traits;
|
||
|
|
||
|
} // CGAL
|
||
|
#endif
|
||
|
|
||
|
#endif // CGAL_KERNEL_TRAITS_FWD_H
|