3dpcp/.svn/pristine/fa/fa11c73a9693d4b3487fc7743404c971a5e681cd.svn-base
2012-09-16 14:33:11 +02:00

18 lines
299 B
Text

#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