Salome HOME
New version of doxygen (1.4.6) is introduced
[tools/install.git] / src / globals.h
index 4871e97d466017cfa70aef7e889d0fe3cd9d8c88..10fffb1e0ab93e92dcf69092452182a799db1c97 100644 (file)
@@ -1,3 +1,10 @@
+//  File      : globals.h
+//  Created   : 14/01/2005
+//  Author    : Vadim SANDLER
+//  Project   : SALOME
+//  Module    : Installation Wizard
+//  Copyright : 2004-2005 CEA
+
 #if !defined( ___GLOBALS )
 #define ___GLOBALS
 
 // ========================
 
 #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