Salome HOME
New version of doxygen (1.4.6) is introduced
[tools/install.git] / src / globals.h
index cb6868bcc45a27bd4abc2971329e6fc3a33fd9ca..10fffb1e0ab93e92dcf69092452182a799db1c97 100644 (file)
 // ========================
 
 #include <qglobal.h>
+#include <iostream>
+
+#define __IW_VERSION_MAJOR__ 1
+#define __IW_VERSION_MINOR__ 0
+#define __IW_VERSION_PATCH__ 1
+
+#define __IW_VERSION__ (__IW_VERSION_MAJOR__*10000 + \
+                        __IW_VERSION_MINOR__*100   + \
+                        __IW_VERSION_PATCH__)
 
 #ifdef QT_DEBUG
 
-#define ___MESSAGE___( x ) cout << x << endl;
+#define ___MESSAGE___( x ) std::cout << x << std::endl;
 
 #else