2005-02-05 12:14:56 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Copyright (C) 1999-2005 Eliot
|
|
|
|
* Authors: Antoine Fraboulet <antoine.fraboulet@free.fr>
|
|
|
|
*
|
2005-04-03 23:12:03 +02:00
|
|
|
* $Id: debug.h,v 1.7 2005/04/03 21:12:03 ipkiss Exp $
|
2005-02-05 12:14:56 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*****************************************************************************/
|
2004-04-08 11:43:06 +02:00
|
|
|
|
|
|
|
#ifndef _CONST_H_
|
|
|
|
#define _CONST_H_
|
|
|
|
|
|
|
|
/**********
|
|
|
|
* General
|
|
|
|
**********/
|
|
|
|
|
2005-04-03 23:12:03 +02:00
|
|
|
#ifdef DEBUG
|
2005-03-27 23:45:04 +02:00
|
|
|
# include <iostream>
|
|
|
|
// Assertion macro: if the condition is not verified, print a message on stderr
|
|
|
|
// and stops execution, otherwise do nothing.
|
|
|
|
# define ASSERT(cond, msg) \
|
2005-03-03 23:14:41 +01:00
|
|
|
{ \
|
2005-03-28 00:08:31 +02:00
|
|
|
if (!(cond)) \
|
2005-03-27 23:45:04 +02:00
|
|
|
{ \
|
2005-03-28 00:08:31 +02:00
|
|
|
cerr << "ASSERTION FAILED: " << (msg) << " (at " \
|
2005-03-27 23:45:04 +02:00
|
|
|
<< __FILE__ << "#" << __LINE__ << ")\n"; \
|
|
|
|
abort(); \
|
|
|
|
} \
|
2005-03-03 23:14:41 +01:00
|
|
|
}
|
2004-04-08 11:43:06 +02:00
|
|
|
#else
|
2005-03-27 23:45:04 +02:00
|
|
|
# define ASSERT(cond, msg)
|
2004-04-08 11:43:06 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|