1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0025181: Incrementation of OCCT version up to 6.8.0.dev

This commit is contained in:
dbv 2014-09-04 15:23:57 +04:00 committed by bugmaster
parent 1f205411c1
commit 71b73fde24
2 changed files with 7 additions and 5 deletions

View File

@ -20,8 +20,10 @@
#if(defined(_MSC_VER) && (_MSC_VER < 1600))
// old MSVC - hasn't stdint header
typedef unsigned __int8 uint8_t;
typedef unsigned __int16 uint16_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t;
#else
#include <stdint.h>
#endif

View File

@ -34,8 +34,8 @@
// Primary definitions
#define OCC_VERSION_MAJOR 6
#define OCC_VERSION_MINOR 7
#define OCC_VERSION_MAINTENANCE 3
#define OCC_VERSION_MINOR 8
#define OCC_VERSION_MAINTENANCE 0
//! This macro must be commented in official release, and set to non-empty
//! string in other situations, to identify specifics of the version, e.g.:
@ -45,9 +45,9 @@
#define OCC_VERSION_DEVELOPMENT "dev"
// Derived (manually): version as real and string (major.minor)
#define OCC_VERSION 6.7
#define OCC_VERSION_STRING "6.7"
#define OCC_VERSION_COMPLETE "6.7.3"
#define OCC_VERSION 6.8
#define OCC_VERSION_STRING "6.8"
#define OCC_VERSION_COMPLETE "6.8.0"
//! Derived: extended version as string ("major.minor.maintenance.dev")
#ifdef OCC_VERSION_DEVELOPMENT