From 9b279276f2d43a1801ce3a109ffa296768dcf6fe Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Sun, 12 Mar 2017 17:28:38 +0000 Subject: [PATCH] changed: commentaries to be more doxygen friendly git-svn-id: svn://ttmath.org/publicrep/ttmath/trunk@1054 e52654a7-88a9-db11-a3e9-0013d4bc506e --- ttmath/ttmathtypes.h | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/ttmath/ttmathtypes.h b/ttmath/ttmathtypes.h index 5511c6f..56a06b6 100644 --- a/ttmath/ttmathtypes.h +++ b/ttmath/ttmathtypes.h @@ -64,16 +64,41 @@ /*! - the version of the library + the major version of the library + the version present to the end user is constructed in this way: + + TTMATH_MAJOR_VER.TTMATH_MINOR_VER.TTMATH_REVISION_VER.[prerelease if TTMATH_PRERELEASE_VER==1] +*/ +#define TTMATH_MAJOR_VER 0 + +/*! + the minor version of the library + + the version present to the end user is constructed in this way: + + TTMATH_MAJOR_VER.TTMATH_MINOR_VER.TTMATH_REVISION_VER.[prerelease if TTMATH_PRERELEASE_VER==1] +*/ +#define TTMATH_MINOR_VER 9 + +/*! + the revision version of the library + + the version present to the end user is constructed in this way: + + TTMATH_MAJOR_VER.TTMATH_MINOR_VER.TTMATH_REVISION_VER.[prerelease if TTMATH_PRERELEASE_VER==1] +*/ +#define TTMATH_REVISION_VER 4 + +/*! TTMATH_PRERELEASE_VER is either zero or one zero means that this is the release version of the library (one means something like beta) -*/ -#define TTMATH_MAJOR_VER 0 -#define TTMATH_MINOR_VER 9 -#define TTMATH_REVISION_VER 4 + the version present to the end user is constructed in this way: + + TTMATH_MAJOR_VER.TTMATH_MINOR_VER.TTMATH_REVISION_VER.[prerelease if TTMATH_PRERELEASE_VER==1] +*/ #define TTMATH_PRERELEASE_VER 1