Salome HOME
[bos #36460][EDF] Define (u,v) coordinates in meshed faces. Solve Projection1D2D...
[plugins/gmshplugin.git] / GMSHPLUGIN_version.h.in
1 // Copyright (C) 2012-2015  ALNEOS
2 // Copyright (C) 2016-2024  EDF
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 //
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.alneos.com/ or email : contact@alneos.fr
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21
22 #if !defined(__GMSHPLUGIN_VERSION_H__)
23 #define __GMSHPLUGIN_VERSION_H__
24
25 /*!
26   Specify version of SALOME GMSHPLUGIN module, as follows
27
28   GMSHPLUGIN_VERSION_MAJOR       : (integer) number identifying major version
29   GMSHPLUGIN_VERSION_MINOR       : (integer) number identifying minor version
30   GMSHPLUGIN_VERSION_MAINTENANCE : (integer) number identifying maintenance version
31   GMSHPLUGIN_VERSION_STR         : (string)  complete version number "major.minor.maintenance"
32   GMSHPLUGIN_VERSION             : (hex)     complete version number (major << 16) + (minor << 8) + maintenance
33   GMSHPLUGIN_DEVELOPMENT         : (integer) indicates development version when set to 1
34 */
35
36 #define GMSHPLUGIN_VERSION_MAJOR       @SALOMEGMSHPLUGIN_MAJOR_VERSION@
37 #define GMSHPLUGIN_VERSION_MINOR       @SALOMEGMSHPLUGIN_MINOR_VERSION@
38 #define GMSHPLUGIN_VERSION_MAINTENANCE @SALOMEGMSHPLUGIN_PATCH_VERSION@
39 #define GMSHPLUGIN_VERSION_STR         "@SALOMEGMSHPLUGIN_VERSION@"
40 #define GMSHPLUGIN_VERSION             @SALOMEGMSHPLUGIN_XVERSION@
41 #define GMSHPLUGIN_DEVELOPMENT         @SALOMEGMSHPLUGIN_VERSION_DEV@
42
43 #endif // __GMSHPLUGIN_VERSION_H__