// Copyright (c) 2006-2008 Max-Planck-Institute Saarbruecken (Germany). // All rights reserved. // // This file is part of CGAL (www.cgal.org) // // $URL: https://github.com/CGAL/cgal/blob/v5.2/Number_types/include/CGAL/Sqrt_extension/Get_arithmetic_kernel.h $ // $Id: Get_arithmetic_kernel.h 52164b1 2019-10-19T15:34:59+02:00 Sébastien Loriot // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Michael Hemmer #ifndef CGAL_SQRT_EXTENSION_GET_ARITHMETIC_KERNEL_H #define CGAL_SQRT_EXTENSION_GET_ARITHMETIC_KERNEL_H #include #include namespace CGAL { template struct Get_arithmetic_kernel >{ typedef Get_arithmetic_kernel GET; typedef typename GET::Arithmetic_kernel Arithmetic_kernel; }; } //namespace CGAL #endif