File indexing completed on 2024-04-14 04:53:13

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