kexi
global.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KEXIDB_GLOBAL_H
00021 #define KEXIDB_GLOBAL_H
00022
00023 #include <kexidb/kexidb_export.h>
00024
00025
00026
00034 #define KEXIDB_VERSION_MAJOR 1
00035 #define KEXIDB_VERSION_MINOR 7
00036
00037
00093 namespace KexiDB {
00094
00095 #define KexiDBDbg kdDebug(44000)
00096 #define KexiDBDrvDbg kdDebug(44001)
00097 #define KexiDBWarn kdWarning(44000)
00098 #define KexiDBDrvWarn kdWarning(44001)
00099
00101 KEXI_DB_EXPORT int versionMajor();
00102
00104 KEXI_DB_EXPORT int versionMinor();
00105
00107 enum ObjectTypes {
00108 UnknownObjectType = -1,
00109 AnyObjectType = 0,
00110 TableObjectType = 1,
00111 QueryObjectType = 2,
00112 LastObjectType = 2,
00113
00114 KexiDBSystemTableObjectType = 128,
00115
00116
00117 IndexObjectType = 256
00118 };
00119
00120 }
00121
00122 #endif
00123
|