Salome HOME
Migration to OCCT 7.0
[modules/kernel.git] / src / Basics / Basics_OCCTVersion.hxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // File   : Basics_OCCTVersion.hxx
24 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S (julia.dorovskikh@opencascade.com)
25
26 #ifndef BASICS_OCCTVERSION_HXX
27 #define BASICS_OCCTVERSION_HXX
28
29 #include <Standard_Version.hxx>
30
31 #include <Standard_DefineHandle.hxx>
32
33 //
34 // NOTE: Since version 6.7.0 OCC_VERSION_DEVELOPMENT macro in the Standard_Version.hxx
35 // points to the development status of the OCCT version: for example "dev", "alpha",
36 // "beta", "rc1", etc.
37 // OCC_VERSION_MAJOR, OCC_VERSION_MINOR and OCC_VERSION_MAINTENANCE macros
38 // specify actual (final) version number; for development version it is a future
39 // target version number (i.e. version number is incremented immediately after
40 // releasing of the stable version).
41 //
42
43 #ifdef OCC_VERSION_SERVICEPACK
44 #  define OCC_VERSION_LARGE (OCC_VERSION_MAJOR << 24 | OCC_VERSION_MINOR << 16 | OCC_VERSION_MAINTENANCE << 8 | OCC_VERSION_SERVICEPACK)
45 #else
46 #  ifdef OCC_VERSION_DEVELOPMENT
47 #    define OCC_VERSION_LARGE ((OCC_VERSION_MAJOR << 24 | OCC_VERSION_MINOR << 16 | OCC_VERSION_MAINTENANCE << 8)-1)
48 #  else
49 #    define OCC_VERSION_LARGE (OCC_VERSION_MAJOR << 24 | OCC_VERSION_MINOR << 16 | OCC_VERSION_MAINTENANCE << 8)
50 #  endif
51 #endif
52
53 // temporary code for backward compatibility with OCCT
54 #if OCC_VERSION_MAJOR < 7
55   #define OCCT_DEFINE_STANDARD_RTTIEXT(C1,C2) DEFINE_STANDARD_RTTI(C1)
56   #define OCCT_IMPLEMENT_STANDARD_RTTIEXT(C1,C2) \
57           IMPLEMENT_STANDARD_HANDLE(C1,C2) \
58           IMPLEMENT_STANDARD_RTTIEXT(C1,C2)
59 #else
60   #define OCCT_DEFINE_STANDARD_RTTIEXT(C1,C2) DEFINE_STANDARD_RTTIEXT(C1,C2)
61   #define OCCT_IMPLEMENT_STANDARD_RTTIEXT(C1,C2) IMPLEMENT_STANDARD_RTTIEXT(C1,C2)
62 #endif
63
64 #endif // BASICS_OCCTVERSION_HXX