Warning, file /frameworks/syndication/src/syndication_private_export.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* This file is part of the KDE project 0002 SPDX-FileCopyrightText: 2019 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef SYNDICATIONPRIVATE_EXPORT_H 0008 #define SYNDICATIONPRIVATE_EXPORT_H 0009 0010 #include "syndication_export.h" 0011 0012 /* Classes which are exported only for unit tests */ 0013 #ifdef BUILD_TESTING 0014 #ifndef SYNDICATION_TESTS_EXPORT 0015 #define SYNDICATION_TESTS_EXPORT SYNDICATION_EXPORT 0016 #endif 0017 #else /* not compiling tests */ 0018 #define SYNDICATION_TESTS_EXPORT 0019 #endif 0020 0021 #endif