15 lines
211 B
C++
Executable File
15 lines
211 B
C++
Executable File
#ifndef CGAL_IS_EXTENDED_KERNEL_H
|
|
#define CGAL_IS_EXTENDED_KERNEL_H
|
|
|
|
|
|
CGAL_BEGIN_NAMESPACE
|
|
|
|
template<class Kernel>
|
|
struct Is_extended_kernel {
|
|
typedef Tag_false value_type;
|
|
};
|
|
|
|
CGAL_END_NAMESPACE
|
|
|
|
#endif
|