File indexing completed on 2025-01-19 06:54:53
0001 // This file is copied from kdelibs. Licensed under LGPL. 0002 0003 #ifndef KMUDDY_EXPORT_H 0004 #define KMUDDY_EXPORT_H 0005 0006 #include <QtGlobal> 0007 0008 #ifndef KMUDDY_EXPORT 0009 # if defined(MAKE_KMUDDYCORE_LIB) 0010 /* We are building this library */ 0011 # define KMUDDY_EXPORT Q_DECL_EXPORT 0012 # else 0013 /* We are using this library */ 0014 # define KMUDDY_EXPORT Q_DECL_IMPORT 0015 # endif 0016 #endif 0017 0018 #endif