3dpcp/.svn/pristine/fa/fa11c73a9693d4b3487fc7743404c971a5e681cd.svn-base

19 lines
299 B
Text
Raw Normal View History

2012-09-16 12:33:11 +00:00
#ifndef __DEBUG_H_
#define __DEBUG_H_
#include <iostream>
/** Printouts for debugging
* @author Andre Schemschatt, Uwe Hebbelmann, Sebastian Stock
* @date 14.2.08
*/
#ifdef DEBUG
#define DEBUGPRINT(msg) std::cout <<"[Debug] "<< msg << std::endl;
#else
#define DEBUGPRINT(msg)
#endif
#endif