// Copyright (c) 2009 GeometryFactory (France) // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL$ // $Id$ // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Laurent Rineau #ifndef CGAL_PROJECTION_TRAITS_3_H #define CGAL_PROJECTION_TRAITS_3_H #include namespace CGAL { // This declaration is needed to break the cyclic dependency. template < class Filtered_kernel > class Filtered_projection_traits_3; template class Projection_traits_3 : public Projection_traits_base_3 { public: explicit Projection_traits_3(const typename Kernel::Vector_3& n_) : Projection_traits_base_3(n_) {} }; template class Projection_traits_3 : public Filtered_projection_traits_3 { public: explicit Projection_traits_3(const typename Kernel::Vector_3& n_) : Filtered_projection_traits_3(n_) {} }; } // namespace CGAL #endif // CGAL_PROJECTION_TRAITS_3_H