update dict
[QFreeRecite.git] / src / core / Debug.h
blob054d93c04e1e382a18697ae65724c1cc4c52a9be
1 #ifndef FR_DEBUG_H_
2 #define FR_DEBUG_H_
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
11 #endif //FR_DEBUG_H_