File indexing completed on 2025-01-26 05:06:21
0001 /* 0002 SPDX-FileCopyrightText: 2017 Klarälvdalens Datakonsult AB a KDAB Group company <info@kdab.com> 0003 SPDX-FileContributor: Andras Mantia <andras.mantia@kdab.com> 0004 0005 SPDX-License-Identifier: GPL-2.0-or-later 0006 */ 0007 0008 #pragma once 0009 0010 #include "folderplugin_export.h" 0011 0012 /* Classes which are exported only for unit tests */ 0013 #ifdef BUILD_TESTING 0014 #ifndef FOLDERPLUGIN_TESTS_EXPORT 0015 #define FOLDERPLUGIN_TESTS_EXPORT FOLDERPLUGIN_EXPORT 0016 #endif 0017 #else /* not compiling tests */ 0018 #define FOLDERPLUGIN_TESTS_EXPORT 0019 #endif