KGLLib
core/kgllib/kgllib_export.h
00001 /*
00002  * Copyright (C) 2008 Rivo Laks <rivolaks@hot.ee>
00003  *
00004  * This library is free software; you can redistribute it and/or
00005  * modify it under the terms of the GNU Lesser General Public
00006  * License as published by the Free Software Foundation; either 
00007  * version 2.1 of the License, or (at your option) any later version.
00008  *
00009  * This library is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012  * Library General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU Lesser General Public 
00015  * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
00016  */
00017 
00018 #ifndef KGLLIB_EXPORT_H
00019 #define KGLLIB_EXPORT_H
00020 
00021 #include <QtCore/QtGlobal>
00022 
00023 
00024 #ifndef KGLLIB_EXPORT
00025 # if defined(MAKE_KGLLIB_LIB)
00026 #  define KGLLIB_EXPORT Q_DECL_EXPORT
00027 # else
00028 #  define KGLLIB_EXPORT Q_DECL_IMPORT
00029 # endif
00030 #endif
00031 
00032 #ifndef KGLLIB_EXTRAS_EXPORT
00033 # if defined(MAKE_KGLLIB_EXTRAS_LIB)
00034 #  define KGLLIB_EXTRAS_EXPORT Q_DECL_EXPORT
00035 # else
00036 #  define KGLLIB_EXTRAS_EXPORT Q_DECL_IMPORT
00037 # endif
00038 #endif
00039 
00040 #endif