2011-06-23 13:38:15 +00:00
|
|
|
#ifndef _DEBUG_H_
|
|
|
|
#define _DEBUG_H_
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
#include <iostream>
|
2011-06-23 17:54:28 +00:00
|
|
|
#include <cstdio>
|
2011-06-23 13:38:15 +00:00
|
|
|
using std::cerr;
|
|
|
|
using std::endl;
|
2011-06-23 17:54:28 +00:00
|
|
|
using std::fprintf;
|
2011-06-23 13:38:15 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|