mirror of https://github.com/CGAL/cgal
25 lines
476 B
C++
25 lines
476 B
C++
// Copyright (C) 2018 GeometryFactory Sarl
|
|
//
|
|
// This file is part of CGAL (www.cgal.org)
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// 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
|