00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CFL_VERSION_H
00016 #define CFL_VERSION_H
00017
00018 #ifdef _DEBUG // "Debug" or "Release"
00019 #define SPECIAL_BUILD "Debug"
00020 #else
00021 #define SPECIAL_BUILD "Release"
00022 #endif
00023
00024 #define COMMENT_STRING "3.5.1 (development)"
00025 #define COMPANY_NAME "Leiden Probe Microscopy"
00026 #define FILE_DESCRIPTION "Camera Filter Library (" SPECIAL_BUILD ")"
00027 #define FILE_VERSION "3.5.1" // "3.0.0"
00028 #define INTERNAL_NAME "CFiltLib"
00029 #define LEGAL_COPYRIGHT "Copyright (C) 2004-2006 Leiden Probe Microscopy"
00030 #define LEGAL_TRADEMARKS ""
00031 #define ORIGINAL_FILENAME "CFiltLib.dll"
00032 #define PRIVATE_BUILD ""
00033 #define PRODUCT_NAME "Camera Filter Library"
00034 #define PRODUCT_VERSION 3,5,1,0 // 3,0,0,0
00035
00036 #endif // #ifndef CFL_VERSION_H
00037
00038
00039
00040
00041