File indexing completed on 2024-12-22 04:18:19
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 #ifndef KST_WIDGETS_EXPORT_H 0013 #define KST_WIDGETS_EXPORT_H 0014 0015 #include <qglobal.h> 0016 0017 #if (defined(Q_OS_WIN32) || defined(Q_OS_WIN64)) 0018 # if defined(BUILD_KSTWIDGETS) 0019 # define KSTWIDGETS_EXPORT Q_DECL_EXPORT 0020 # else 0021 # define KSTWIDGETS_EXPORT Q_DECL_IMPORT 0022 # endif 0023 #else 0024 # define KSTWIDGETS_EXPORT 0025 #endif 0026 0027 #endif 0028 0029 // vim: ts=2 sw=2 et