mirror of https://github.com/CGAL/cgal
42 lines
893 B
C
42 lines
893 B
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/LEDA_basic.h
|
|
// package :
|
|
// maintainer :
|
|
// revision :
|
|
// revision_date :
|
|
// author(s) :
|
|
//
|
|
//
|
|
// coordinator :
|
|
// ======================================================================
|
|
|
|
#ifndef CGAL_LEDA_BASIC_H
|
|
#define CGAL_LEDA_BASIC_H
|
|
|
|
#ifdef CGAL_USE_LEDA
|
|
#include <LEDA/basic.h>
|
|
|
|
#ifdef LEDA_NAMESPACE
|
|
# define CGAL_LEDA_SCOPE leda
|
|
#else
|
|
# define CGAL_LEDA_SCOPE
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|
|
|
|
#endif
|