1 /*  This file is part of the KDE project
2     SPDX-FileCopyrightText: 2007 Matthias Kretz <kretz@kde.org>
3 
4     SPDX-License-Identifier: LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5 */
6 
7 #ifndef KDENLIVECORE_EXPORT_H
8 #define KDENLIVECORE_EXPORT_H
9 
10 
11 #ifndef KDENLIVECORE_EXPORT
12 #if defined(MAKE_KDENLIVECORE_LIB)
13 /* We are building this library */
14 #define KDENLIVECORE_EXPORT Q_DECL_EXPORT
15 #else
16 /* We are using this library */
17 #define KDENLIVECORE_EXPORT Q_DECL_IMPORT
18 #endif
19 #endif
20 
21 #endif
22