00001 #ifndef ROCSLIB_EXPORT_H 00002 #define ROCSLIB_EXPORT_H 00003 00004 // needed for KDE_EXPORT and KDE_IMPORT macros 00005 #include <kdemacros.h> 00006 00007 #ifndef ROCSLIB_EXPORT 00008 # if defined(MAKE_ROCSLIB_LIB) 00009 // We are building this library 00010 # define ROCSLIB_EXPORT KDE_EXPORT 00011 # else 00012 // We are using this library 00013 # define ROCSLIB_EXPORT KDE_IMPORT 00014 # endif 00015 #endif 00016 00017 # ifndef ROCSLIB_EXPORT_DEPRECATED 00018 # define ROCSLIB_EXPORT_DEPRECATED KDE_DEPRECATED ROCSLIB_EXPORT 00019 # endif 00020 00021 #endif