NewAskSin
 All Classes Files Functions Variables Groups Pages
Version.h
1 //- -----------------------------------------------------------------------------------------------------------------------
2 // AskSin driver implementation
3 // 2013-08-03 <trilu@gmx.de>, <dirk@hfma.de> Creative Commons - http://creativecommons.org/licenses/by-nc-sa/3.0/de/
4 //- -----------------------------------------------------------------------------------------------------------------------
5 
6 #ifndef _VERSION_H
7  #define _VERSION_H
8 
9  #define LIB_VERSION_MAJOR 0
10  #define LIB_VERSION_MINOR 2
11  #define LIB_VERSION_PATCH 2
12 
13  #define STR(x) #x
14  #define LIB_VERSION_STRING_FUNC(v1, v2, v3) "AskSin-Lib V " STR(v1) "." STR(v2) "." STR(v3) "\n"
15  #define LIB_VERSION_STRING LIB_VERSION_STRING_FUNC (LIB_VERSION_MAJOR, LIB_VERSION_MINOR, LIB_VERSION_PATCH)
16 
17 #endif