repo.or.cz
/
QFreeRecite.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update dict
[QFreeRecite.git]
/
src
/
core
/
Debug.h
blob
054d93c04e1e382a18697ae65724c1cc4c52a9be
1
#ifndef FR_DEBUG_H_
2
#define FR_DEBUG_H_
3
4
#if defined(DEBUG)
5
# include <iostream>
6
# define D_OUTPUT(a) std::cerr << (a) << std::endl;
7
#else
//DEBUG
8
# define D_OUTPUT(a)
//Empty
9
#endif
//DEBUG
10
11
#endif
//FR_DEBUG_H_