File indexing completed on 2024-12-08 08:14:15
0001 /** 0002 * SPDX-FileCopyrightText: (C) (C) 2009 Matt Rogers <mattr@kde.org> 0003 * SPDX-License-Identifier: LGPL-2.1-or-later 0004 */ 0005 0006 #ifndef BASKET_EXPORT_H 0007 #define BASKET_EXPORT_H 0008 0009 #ifndef BASKET_EXPORT 0010 #if defined(MAKE_BASKETCOMMON_LIB) 0011 /* We are building this library */ 0012 #define BASKET_EXPORT Q_DECL_EXPORT 0013 #else 0014 /* We are using this library */ 0015 #define BASKET_EXPORT Q_DECL_IMPORT 0016 #endif 0017 #endif 0018 0019 #ifndef BASKET_EXPORT_DEPRECATED 0020 #define BASKET_EXPORT_DEPRECATED KDE_DEPRECATED BASKET_EXPORT 0021 #endif 0022 0023 #endif