34 lines
879 B
C++
34 lines
879 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/Cartesian_converter_fwd.h $
|
|
// $Id: Cartesian_converter_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_CARTESIAN_CONVERTER_FWD_H
|
|
#define CGAL_CARTESIAN_CONVERTER_FWD_H
|
|
|
|
/// \file Cartesian_converter_fwd.h
|
|
/// Forward declarations of the `Cartesian_converter` class.
|
|
|
|
#ifndef DOXYGEN_RUNNING
|
|
namespace CGAL {
|
|
|
|
namespace internal {
|
|
template < typename K1, typename K2 >
|
|
struct Default_converter;
|
|
}//internal
|
|
|
|
template < class K1, class K2,
|
|
class Converter = typename internal::Default_converter<K1, K2>::Type >
|
|
class Cartesian_converter;
|
|
|
|
} // CGAL
|
|
#endif
|
|
|
|
#endif /* CGAL_CARTESIAN_CONVERTER_FWD_H */
|
|
|
|
|