Merge branch 'handle-stdout'
[SXSI/xpathcomp.git] / src / Utils.h
1 /**************************************
2  * Utils.h
3  * -------------------
4  * Utility macro for debugging purposes
5  * 
6  * 
7  * Author: Kim Nguyen
8  * Date: 05/11/08
9  */
10
11
12 #ifndef UTILS_H_
13 #define UTILS_H_
14 #ifdef DEBUG
15 #include<iostream>
16 #define DPRINT(msg) std::cerr << msg;
17 #else
18 #define DPRINT(msg)
19 #endif
20 #endif // UTILS_H_