1/* This file is part of the KDE project
2 SPDX-FileCopyrightText: 2019 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#ifndef SYNDICATIONPRIVATE_EXPORT_H
8#define SYNDICATIONPRIVATE_EXPORT_H
9
10#include "syndication_export.h"
11
12/* Classes which are exported only for unit tests */
13#ifdef BUILD_TESTING
14#ifndef SYNDICATION_TESTS_EXPORT
15#define SYNDICATION_TESTS_EXPORT SYNDICATION_EXPORT
16#endif
17#else /* not compiling tests */
18#define SYNDICATION_TESTS_EXPORT
19#endif
20
21#endif
22

source code of syndication/src/syndication_private_export.h