mirror of https://github.com/CGAL/cgal
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
// ======================================================================
|
|
//
|
|
// Copyright (c) 1999 The CGAL Consortium
|
|
//
|
|
// This software and related documentation is part of an INTERNAL release
|
|
// of the Computational Geometry Algorithms Library (CGAL). It is not
|
|
// intended for general use.
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
//
|
|
// release :
|
|
// release_date :
|
|
//
|
|
// file : include/CGAL/kernel_basic.h
|
|
// package : Kernel_basic
|
|
// revision : $Revision$
|
|
// revision_date : $Date$
|
|
// author(s) : Stefan Schirra
|
|
//
|
|
//
|
|
// coordinator : MPI, Saarbruecken (<Stefan.Schirra@mpi-sb.mpg.de>)
|
|
// ======================================================================
|
|
|
|
|
|
#ifndef CGAL_KERNEL_BASIC_H
|
|
#define CGAL_KERNEL_BASIC_H
|
|
|
|
#include <CGAL/Kernel_traits.h>
|
|
#include <CGAL/functional_base.h>
|
|
|
|
#ifndef CGAL_KERNEL_INLINE
|
|
# define CGAL_KERNEL_INLINE inline
|
|
#endif
|
|
|
|
#ifndef CGAL_KERNEL_MEDIUM_INLINE
|
|
# define CGAL_KERNEL_MEDIUM_INLINE
|
|
#endif
|
|
|
|
#ifndef CGAL_KERNEL_LARGE_INLINE
|
|
# define CGAL_KERNEL_LARGE_INLINE
|
|
#endif
|
|
|
|
#ifndef CGAL_FRIEND_INLINE
|
|
# define CGAL_FRIEND_INLINE
|
|
#endif
|
|
|
|
#endif // CGAL_KERNEL_BASIC_H
|