DLS  1.6
export.h
1 /*****************************************************************************
2  *
3  * Copyright (C) 2009 - 2017 Florian Pose <fp@igh-essen.com>
4  *
5  * This file is part of the DLS widget library.
6  *
7  * The DLS widget library is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public License as
9  * published by the Free Software Foundation, either version 3 of the License,
10  * or (at your option) any later version.
11  *
12  * The DLS widget library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with the DLS widget library. If not, see
19  * <http://www.gnu.org/licenses/>.
20  *
21  ****************************************************************************/
22 
23 #ifndef DLSWIDGET_EXPORT_H
24 #define DLSWIDGET_EXPORT_H
25 
26 #include <QtCore/QtGlobal>
27 
28 #ifdef DlsWidgets_EXPORTS
29 # define DLSWIDGETS_PUBLIC Q_DECL_EXPORT
30 #else
31 # define DLSWIDGETS_PUBLIC Q_DECL_IMPORT
32 #endif // DlsWidgets_EXPORTS
33 
34 #endif // DLSWIDGET_EXPORT_H