[QuantLibAddin-cvs] QuantLibAddin/qlo qladdindefines.hpp, 1.5, 1.5.2.1
Brought to you by:
ericehlers,
nando
|
From: Eric E. <eri...@us...> - 2006-08-07 13:37:59
|
Update of /cvsroot/quantlibaddin/QuantLibAddin/qlo In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25218/qlo Modified Files: Tag: R000313f0-branch qladdindefines.hpp Log Message: enforce version number checks Index: qladdindefines.hpp =================================================================== RCS file: /cvsroot/quantlibaddin/QuantLibAddin/qlo/qladdindefines.hpp,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** qladdindefines.hpp 16 Jul 2006 10:18:48 -0000 1.5 --- qladdindefines.hpp 7 Aug 2006 13:37:55 -0000 1.5.2.1 *************** *** 27,45 **** #include <oh/objhandler.hpp> ! #if OBJHANDLER_HEX_VERSION < 0x000103f0 ! #error using an old version of ObjectHandler, please update. #endif #include <ql/qldefines.hpp> ! #if QL_HEX_VERSION < 0x000313f0 ! #error using an old version of QuantLib, please update. #endif //! version string ! //#ifdef _DEBUG ! // #define QLADDIN_VERSION "0.3.13-debug" ! //#else #define QLADDIN_VERSION "0.3.13" ! //#endif //! version hexadecimal number --- 27,45 ---- #include <oh/objhandler.hpp> ! #if OBJHANDLER_HEX_VERSION != 0x000104f0 ! #error using an incorrect version of ObjectHandler, please update. #endif #include <ql/qldefines.hpp> ! #if QL_HEX_VERSION != 0x000313f0 ! #error using an incorrect version of QuantLib, please update. #endif //! version string ! #ifdef _DEBUG ! #define QLADDIN_VERSION "0.3.13-debug" ! #else #define QLADDIN_VERSION "0.3.13" ! #endif //! version hexadecimal number |