Salome HOME
SALOME 6.5.0 preparation: homard 10.3 -> 10.4
[tools/install.git] / src / globals.h
index 4871e97d466017cfa70aef7e889d0fe3cd9d8c88..2db8a2aacd2a249af590bcdbfcbf4245047c89c6 100644 (file)
@@ -1,3 +1,10 @@
+//  File      : globals.h
+//  Created   : 14/01/2005
+//  Author    : Vadim SANDLER, Open CASCADE SAS (vadim.sandler@opencascade.com)
+//  Project   : SALOME
+//  Module    : Installation Wizard
+//  Copyright : 2002-2010 CEA
+
 #if !defined( ___GLOBALS )
 #define ___GLOBALS
 
 // ========================
 
 #include <qglobal.h>
+#include <iostream>
+
+#define __IW_VERSION_MAJOR__ 1
+#define __IW_VERSION_MINOR__ 1
+#define __IW_VERSION_PATCH__ 7
+
+#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