File indexing completed on 2024-05-12 12:00:13

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 2007 David Faure <faure@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef KXMLRPCCLIENTPRIVATE_EXPORT_H
0009 #define KXMLRPCCLIENTPRIVATE_EXPORT_H
0010 
0011 #include "kxmlrpcclient_export.h"
0012 
0013 /* Classes which are exported only for unit tests */
0014 #ifdef BUILD_TESTING
0015 #ifndef KXMLRPCCLIENT_TESTS_EXPORT
0016 #define KXMLRPCCLIENT_TESTS_EXPORT KXMLRPCCLIENT_EXPORT
0017 #endif
0018 #else /* not compiling tests */
0019 #define KXMLRPCCLIENT_TESTS_EXPORT
0020 #endif
0021 
0022 #endif