Kross
kross_export.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KROSS_EXPORT_H
00022 #define KROSS_EXPORT_H
00023
00024
00025 #include <kdemacros.h>
00026
00027 #ifndef KROSS_EXPORT
00028 # if defined(MAKE_KROSS_LIB)
00029
00030 # define KROSS_EXPORT KDE_EXPORT
00031 # else
00032
00033 # define KROSS_EXPORT KDE_IMPORT
00034 # endif
00035 #endif
00036
00037 #ifndef KROSSCORE_EXPORT
00038 # if defined(MAKE_KROSSCORE_LIB)
00039
00040 # define KROSSCORE_EXPORT KDE_EXPORT
00041 # else
00042
00043 # define KROSSCORE_EXPORT KDE_IMPORT
00044 # endif
00045 #endif
00046
00047 #ifndef KROSSUI_EXPORT
00048 # if defined(MAKE_KROSSUI_LIB)
00049
00050 # define KROSSUI_EXPORT KDE_EXPORT
00051 # else
00052
00053 # define KROSSUI_EXPORT KDE_IMPORT
00054 # endif
00055 #endif
00056
00057 # ifndef KROSS_EXPORT_DEPRECATED
00058 # define KROSS_EXPORT_DEPRECATED KDE_DEPRECATED KROSS_EXPORT
00059 # endif
00060 # ifndef KROSSCORE_EXPORT_DEPRECATED
00061 # define KROSSCORE_EXPORT_DEPRECATED KDE_DEPRECATED KROSSCORE_EXPORT
00062 # endif
00063
00064 #endif