00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef IRC_GLOBAL_H
00016 #define IRC_GLOBAL_H
00017
00018 #include <QtGlobal>
00019
00024 #if defined(IRC_SHARED)
00025 # if defined(BUILD_IRC)
00026 # define IRC_EXPORT Q_DECL_EXPORT
00027 # else
00028 # define IRC_EXPORT Q_DECL_IMPORT
00029 # endif
00030 #elif defined(IRC_STATIC)
00031 # define IRC_EXPORT
00032 #else
00033 # error Installation problem: either IRC_SHARED or IRC_STATIC must be defined!
00034 #endif
00035
00052 #define IRC_VERSION 0x000500
00053
00062 #define IRC_VERSION_STR "0.5.0"
00063
00064 #ifndef QT_FORWARD_DECLARE_CLASS
00065 # define QT_FORWARD_DECLARE_CLASS(name) class name;
00066 #endif // QT_FORWARD_DECLARE_CLASS
00067
00068 #endif // IRC_GLOBAL_H