mirror of https://github.com/CGAL/cgal
61 lines
1.4 KiB
C
61 lines
1.4 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 : 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
|
|
|
|
#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_KERNEL_CTOR_INLINE
|
|
# define CGAL_KERNEL_CTOR_INLINE
|
|
#endif
|
|
|
|
#ifndef CGAL_KERNEL_CTOR_MEDIUM_INLINE
|
|
# define CGAL_KERNEL_CTOR_MEDIUM_INLINE
|
|
#endif
|
|
|
|
#ifndef CGAL_KERNEL_CTOR_LARGE_INLINE
|
|
# define CGAL_KERNEL_CTOR_LARGE_INLINE
|
|
#endif
|
|
|
|
#ifndef CGAL_FRIEND_INLINE
|
|
# define CGAL_FRIEND_INLINE
|
|
#endif
|
|
|
|
#ifndef CGAL_KERNEL_FRIEND_INLINE
|
|
# define CGAL_KERNEL_FRIEND_INLINE
|
|
#endif
|
|
|
|
#endif // CGAL_KERNEL_BASIC_H
|