31 lines
729 B
C
31 lines
729 B
C
|
// Copyright (c) 1997-2000 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.1/Nef_2/include/CGAL/Is_extended_kernel.h $
|
||
|
// $Id: Is_extended_kernel.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
||
|
//
|
||
|
//
|
||
|
// Author(s) : Andreas Fabri <andreas.fabri@geometryfactory.com>
|
||
|
|
||
|
#ifndef CGAL_IS_EXTENDED_KERNEL_H
|
||
|
#define CGAL_IS_EXTENDED_KERNEL_H
|
||
|
|
||
|
#include <CGAL/license/Nef_2.h>
|
||
|
|
||
|
|
||
|
#include <CGAL/tags.h>
|
||
|
|
||
|
namespace CGAL {
|
||
|
|
||
|
template<class Kernel>
|
||
|
struct Is_extended_kernel {
|
||
|
typedef Tag_false value_type;
|
||
|
};
|
||
|
|
||
|
} //namespace CGAL
|
||
|
|
||
|
#endif
|