view Source/Version.h @ 11:76e2e62635b4

Fixed the automation problem when a control isn't a child.
author martinm_home <martin.morrell@eecs.qmul.ac.uk>
date Thu, 27 Sep 2012 12:33:46 +0100
parents 503cbcdd0b2a
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