X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fglobals.h;h=2db8a2aacd2a249af590bcdbfcbf4245047c89c6;hb=260bf6b42efe9e30501c4e6e99b013da3fe34f77;hp=4871e97d466017cfa70aef7e889d0fe3cd9d8c88;hpb=b2f455f9c32667f9adee3ae066a51d85fb94ea04;p=tools%2Finstall.git diff --git a/src/globals.h b/src/globals.h index 4871e97..2db8a2a 100644 --- a/src/globals.h +++ b/src/globals.h @@ -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 @@ -6,10 +13,19 @@ // ======================== #include +#include + +#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