Salome HOME
0022876: EDF 8425 SMESH: Get the normal of a face in the GUI
[modules/smesh.git] / SMESH_version.h.in
index fff2375112d24d2eb68a3c09cffb1786f52e227e..79e9367d37d218e0a7408f9e513563a6a4a431ad 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 #if !defined(__SMESH_VERSION_H__)
 #define __SMESH_VERSION_H__
 
-/*
-  SMESH_VERSION is (major << 16) + (minor << 8) + patch.
+/*!
+  Specify version of SALOME SMESH module, as follows
+
+  SMESH_VERSION_MAJOR       : (integer) number identifying major version
+  SMESH_VERSION_MINOR       : (integer) number identifying minor version
+  SMESH_VERSION_MAINTENANCE : (integer) number identifying maintenance version
+  SMESH_VERSION_STR         : (string)  complete version number "major.minor.maintenance"
+  SMESH_VERSION             : (hex)     complete version number (major << 16) + (minor << 8) + maintenance
+  SMESH_DEVELOPMENT         : (integer) indicates development version when set to 1
 */
 
-#define SMESH_VERSION_STR "@VERSION@"
-#define SMESH_VERSION     @XVERSION@
-#define SMESH_DEVELOPMENT @VERSION_DEV@
+#define SMESH_VERSION_MAJOR       @SALOMESMESH_MAJOR_VERSION@
+#define SMESH_VERSION_MINOR       @SALOMESMESH_MINOR_VERSION@
+#define SMESH_VERSION_MAINTENANCE @SALOMESMESH_PATCH_VERSION@
+#define SMESH_VERSION_STR         "@SALOMESMESH_VERSION@"
+#define SMESH_VERSION             @SALOMESMESH_XVERSION@
+#define SMESH_DEVELOPMENT         @SALOMESMESH_VERSION_DEV@
 
 #endif // __SMESH_VERSION_H__