File indexing completed on 2024-12-22 04:17:58
0001 /*************************************************************************** 0002 * * 0003 * copyright : (C) 2007 The University of Toronto * 0004 * netterfield@astro.utoronto.ca * 0005 * * 0006 * This program is free software; you can redistribute it and/or modify * 0007 * it under the terms of the GNU General Public License as published by * 0008 * the Free Software Foundation; either version 2 of the License, or * 0009 * (at your option) any later version. * 0010 * * 0011 ***************************************************************************/ 0012 0013 #ifndef KST_MATH_EXPORT_H 0014 #define KST_MATH_EXPORT_H 0015 0016 #include <qglobal.h> 0017 0018 #if (defined(Q_OS_WIN32) || defined(Q_OS_WIN64)) 0019 # if defined(BUILD_KSTMATH) 0020 # define KSTMATH_EXPORT Q_DECL_EXPORT 0021 # else 0022 # define KSTMATH_EXPORT Q_DECL_IMPORT 0023 # endif 0024 #else 0025 # define KSTMATH_EXPORT 0026 #endif 0027 0028 #endif 0029 0030 // vim: ts=2 sw=2 et