kformula/flake
kformula_export.hGo 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 #ifndef KFORMULA_EXPORT_H
00021 #define KFORMULA_EXPORT_H
00022
00023
00024 #include <kdemacros.h>
00025
00026 #ifndef KOFORMULA_EXPORT
00027 # if defined(MAKE_KFORMULALIB_LIB)
00028
00029 # define KOFORMULA_EXPORT KDE_EXPORT
00030 # else
00031
00032 # define KOFORMULA_EXPORT KDE_IMPORT
00033 # endif
00034 #endif
00035
00036 #ifndef KFORMULAPRIVATE_EXPORT
00037 # if defined(MAKE_KFORMULAPRIVATE_LIB)
00038
00039 # define KFORMULAPRIVATE_EXPORT KDE_EXPORT
00040 # else
00041
00042 # define KFORMULAPRIVATE_EXPORT KDE_IMPORT
00043 # endif
00044 #endif
00045
00046 # ifndef KOFORMULA_EXPORT_DEPRECATED
00047 # define KOFORMULA_EXPORT_DEPRECATED KDE_DEPRECATED KOFORMULA_EXPORT
00048 # endif
00049
00050 # ifndef KFORMULAPRIVATE_EXPORT_DEPRECATED
00051 # define KFORMULAPRIVATE_EXPORT_DEPRECATED KDE_DEPRECATED KFORMULAPRIVATE_EXPORT
00052 # endif
00053
00054
00055 #endif
|