00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef QEXTEND_GLOBAL_H
00021 #define QEXTEND_GLOBAL_H
00022
00023 #include <QtCore/qglobal.h>
00024
00025 #if defined(QEXTEND_LIBRARY)
00026 # define QEXTEND_EXPORT Q_DECL_EXPORT
00027 #else
00028 # define QEXTEND_EXPORT Q_DECL_IMPORT
00029 #endif
00030
00031 #define QE_FORWARD_DECLARE_CLASS(name) namespace QExtend { class name; }
00032 #define QE_BEGIN_NAMESPACE namespace QExtend {
00033 #define QE_END_NAMESPACE }
00034
00035 #endif // QEXTEND_GLOBAL_H