15 #ifndef QDATASCHEMAGLOBAL_H
16 #define QDATASCHEMAGLOBAL_H
17 #define QDS_VERSION 0x120
20 #if QT_VERSION>=0x040000
25 #include <QCoreApplication>
26 #include <QStringList>
27 #define QSqlFieldInfo QSqlField
29 #define QDATASCHEMA_QT4
30 #define QDS_SQLTable QSqlTableModel
32 #define QDS_IO_ReadOnly QIODevice::ReadOnly
33 #define QDS_IO_WriteOnly QIODevice::WriteOnly
34 #define QTextStream_readAll( t ) t.readAll()
38 #include <qsqldatabase.h>
39 #include <qapplication.h>
40 #include <qsqlrecord.h>
41 #include <qsqlcursor.h>
42 #include <qstringlist.h>
45 #include <qtextcodec.h>
47 #define QDS_SQLTable QSqlCursor
49 #define QDS_IO_ReadOnly IO_ReadOnly
50 #define QDS_IO_WriteOnly IO_WriteOnly
51 #define QTextStream_readAll( t ) t.read()
62 #if defined(Q_OS_WIN32) && !defined(LIB_NO_DLL)
63 # define LIB_DLLIMPORT __declspec(dllimport)
64 # define LIB_DLLEXPORT __declspec(dllexport)
66 # define LIB_DLLIMPORT
67 # define LIB_DLLEXPORT
70 #if defined (Q_CC_MSVC)
71 #define TEMPLATE_EXTERN extern
73 #define TEMPLATE_EXTERN
76 #ifdef QDATASCHEMA_EXPORT
77 # define LIB_EXPORT LIB_DLLEXPORT
79 # define LIB_EXPORT LIB_DLLIMPORT
82 #ifdef QDATASCHEMA_EXPORT
83 # define LIB_TEMPLATE_EXTERN
85 # define LIB_TEMPLATE_EXTERN TEMPLATE_EXTERN
88 #if defined(Q_CC_MSVC)
89 # define vsnprintf _vsnprintf
99 enum MO_Type { MO_ROOT, MO_CLASS, MO_ATTR, MO_RELATION };
101 static int version();
105 QChar toLower(QChar c);
106 QString toLower(
const QString &s);
107 char toAscii(QChar c);
108 int indexOf(
const QString &str,
const QString &find_str );
109 const char *toLocal8Bit(
const QString &s);
110 QStringList split(
const QString &div,
const QString &str );
111 QString trimm(
const QString &s);
Пространство имен QDataSchema.
Definition: qdataschemaglobal.h:93
MO_Type
Definition: qdataschemaglobal.h:99