mirror of https://github.com/CGAL/cgal
41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
// Copyright (c) 1997-2001 ETH Zurich (Switzerland).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org); you may redistribute it under
|
|
// the terms of the Q Public License version 1.0.
|
|
// See the file LICENSE.QPL distributed with CGAL.
|
|
//
|
|
// Licensees holding a valid commercial license may use this file in
|
|
// accordance with the commercial license agreement provided with the software.
|
|
//
|
|
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
|
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
//
|
|
//
|
|
// Author(s) : Sven Schoenherr <sven@inf.fu-berlin.de>
|
|
// Bernd Gaertner <gaertner@inf.ethz.ch>
|
|
// Franz Wessendorp <fransw@inf.ethz.ch>
|
|
// Kaspar Fischer <fischerk@inf.ethz.ch>
|
|
|
|
#ifndef CGAL_QP_DEBUG_H
|
|
#define CGAL_QP_DEBUG_H
|
|
|
|
// macro definitions
|
|
// =================
|
|
|
|
// debug
|
|
// -----
|
|
#if ( defined( CGAL_QP_NO_DEBUG) \
|
|
|| defined( CGAL_NO_DEGUG) || defined( NDEBUG))
|
|
# define CGAL_qpe_debug if ( 0)
|
|
#else
|
|
# define CGAL_qpe_debug if ( 1)
|
|
#endif // qpe debug
|
|
|
|
#endif // CGAL_QP_DEBUG_H
|
|
|
|
// ===== EOF ==================================================================
|