Mercurial > hg > ambi-plugin
view Source/Version.h @ 6:503cbcdd0b2a
Working now.
author | martinm_home <martin.morrell@eecs.qmul.ac.uk> |
---|---|
date | Mon, 10 Sep 2012 14:03:14 +0100 |
parents | |
children |
line wrap: on
line source
// // Version.h // Classic Ambisonics Decoder VST // // Created by momont on 06/09/2012. // // #ifndef Classic_Ambisonics_Decoder_VST_Version_h #define Classic_Ambisonics_Decoder_VST_Version_h #define MAJOR_VERSION_STR "1" #define MAJOR_VERSION_INT 0 #define MINOR_VERSION_STR "2" #define MINOR_VERSION_INT 1 #define MAINT_VERSION_STR "4" #define MAINT_VERSION_INT 2 #define BUILD_VERSION_STR "279" #define BUILD_VERSION_INT 3 #define FULL_VERSION_STR MAJOR_VERSION_STR "." MINOR_VERSION_STR "." MAINT_VERSION_STR "." BUILD_VERSION_STR #define VERSION_STR MAJOR_VERSION_STR "." MINOR_VERSION_STR "." MAINT_VERSION_STR #define VERSION_INT ((MAJOR_VERSION_INT*1000)+(MINOR_VERSION_INT*100)+(MAINT_VERSION_INT*10) + (BUILD_VERSION_INT/1)) #endif