| 1 | /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
| 2 | |
| 3 | /* |
| 4 | Copyright (C) 2004 Ferdinando Ametrano |
| 5 | Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl |
| 6 | |
| 7 | This file is part of QuantLib, a free-software/open-source library |
| 8 | for financial quantitative analysts and developers - http://quantlib.org/ |
| 9 | |
| 10 | QuantLib is free software: you can redistribute it and/or modify it |
| 11 | under the terms of the QuantLib license. You should have received a |
| 12 | copy of the license along with this program; if not, please email |
| 13 | <quantlib-dev@lists.sf.net>. The license is also available online at |
| 14 | <http://quantlib.org/license.shtml>. |
| 15 | |
| 16 | This program is distributed in the hope that it will be useful, but WITHOUT |
| 17 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
| 18 | FOR A PARTICULAR PURPOSE. See the license for more details. |
| 19 | */ |
| 20 | |
| 21 | #ifndef quantlib_config_h |
| 22 | #define quantlib_config_h |
| 23 | |
| 24 | #define PACKAGE_NAME "QuantLib" |
| 25 | #define PACKAGE_STRING "QuantLib 1.32.0" |
| 26 | #define PACKAGE_TARNAME "QuantLib-1.32.0" |
| 27 | #define PACKAGE_VERSION "1.32.0" |
| 28 | #define PACKAGE_BUGREPORT "https://github.com/lballabio/QuantLib/issues/" |
| 29 | |
| 30 | /* #undef QL_ENABLE_PARALLEL_UNIT_TEST_RUNNER */ |
| 31 | /* #undef QL_ENABLE_SESSIONS */ |
| 32 | /* #undef QL_ENABLE_THREAD_SAFE_OBSERVER_PATTERN */ |
| 33 | /* #undef QL_ENABLE_TRACING */ |
| 34 | /* #undef QL_ERROR_FUNCTIONS */ |
| 35 | /* #undef QL_ERROR_LINES */ |
| 36 | /* #undef QL_EXTRA_SAFETY_CHECKS */ |
| 37 | /* #undef QL_HIGH_RESOLUTION_DATE */ |
| 38 | #define QL_FASTER_LAZY_OBJECTS |
| 39 | /* #undef QL_THROW_IN_CYCLES */ |
| 40 | /* #undef QL_USE_INDEXED_COUPON */ |
| 41 | /* #undef QL_USE_STD_ANY */ |
| 42 | /* #undef QL_USE_STD_OPTIONAL */ |
| 43 | /* #undef QL_USE_STD_SHARED_PTR */ |
| 44 | #define QL_USE_STD_FUNCTION |
| 45 | #define QL_USE_STD_TUPLE |
| 46 | /* #undef QL_NULL_AS_FUNCTIONS */ |
| 47 | |
| 48 | #endif |
| 49 | |