1 /*
2     SPDX-FileCopyrightText: 2017 Klarälvdalens Datakonsult AB a KDAB Group company <info@kdab.com>
3     SPDX-FileContributor: Andras Mantia <andras.mantia@kdab.com>
4 
5     SPDX-License-Identifier: GPL-2.0-or-later
6 */
7 
8 #ifndef FOLDERPLUGIN_PRIVATE_EXPORT_H
9 #define FOLDERPLUGIN_PRIVATE_EXPORT_H
10 
11 #include "folderplugin_export.h"
12 
13 /* Classes which are exported only for unit tests */
14 #ifdef BUILD_TESTING
15 #ifndef FOLDERPLUGIN_TESTS_EXPORT
16 #define FOLDERPLUGIN_TESTS_EXPORT FOLDERPLUGIN_EXPORT
17 #endif
18 #else /* not compiling tests */
19 #define FOLDERPLUGIN_TESTS_EXPORT
20 #endif
21 
22 #endif // FOLDERPLUGIN_PRIVATE_EXPORT_H
23