Browse Source

Add NTK version to header.

tags/v1.3.1000
Jonathan Moore Liles 13 years ago
parent
commit
0c6216b9ed
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      FL/Enumerations.H

+ 8
- 0
FL/Enumerations.H View File

@@ -44,6 +44,14 @@
*/ */
/*@{*/ /*@{*/


#define NTK_MAJOR_VERSION 1
#define NTK_MINOR_VERSION 0
#define NTK_PATCH_VERSION 0

#define NTK_VERSION ((double)NTK_MAJOR_VERSION + \
(double)NTK_MINOR_VERSION * 0.01 + \
(double)NTK_PATCH_VERSION * 0.0001)

/** /**
The major release version of this FLTK library. The major release version of this FLTK library.
\sa FL_VERSION \sa FL_VERSION


Loading…
Cancel
Save