Библиотека QT для работы со схемой базы данных.  1.0.1
qdataschemaglobal.h
1 /****************************************************************************
2 ** $Id: qdataschemaglobal.h,v 1.16 2008/11/09 20:03:16 leader Exp $
3 **
4 ** QT Data Schema project
5 **
6 ** Copyright (C) 1999-2006 Leader InfoTech. All rights reserved.
7 ** Copyright (C) 1999-2006 Valery Grazdankin. All rights reserved.
8 **
9 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
10 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
11 **
12 ** See http://www.leaderit.ru/ or email sales@leaderit.ru
13 **
14 **********************************************************************/
15 #ifndef QDATASCHEMAGLOBAL_H
16 #define QDATASCHEMAGLOBAL_H
17 #define QDS_VERSION 0x120
18 #include <qglobal.h>
19 
20 #if QT_VERSION>=0x040000
21 // QT4 code
22  #include <Qt/QtCore>
23  #include <Qt/QtSql>
24  #include <Qt/QtXml>
25  #include <QCoreApplication>
26  #include <QStringList>
27  #define QSqlFieldInfo QSqlField
28 
29  #define QDATASCHEMA_QT4
30  #define QDS_SQLTable QSqlTableModel
31  #define QDS_int int
32  #define QDS_IO_ReadOnly QIODevice::ReadOnly
33  #define QDS_IO_WriteOnly QIODevice::WriteOnly
34  #define QTextStream_readAll( t ) t.readAll()
35 #else
36 // QT3 code
37  #include <qobject.h>
38  #include <qsqldatabase.h>
39  #include <qapplication.h>
40  #include <qsqlrecord.h>
41  #include <qsqlcursor.h>
42  #include <qstringlist.h>
43  #include <qfile.h>
44  #include <qdom.h>
45  #include <qtextcodec.h>
46 
47  #define QDS_SQLTable QSqlCursor
48  #define QDS_int uint
49  #define QDS_IO_ReadOnly IO_ReadOnly
50  #define QDS_IO_WriteOnly IO_WriteOnly
51  #define QTextStream_readAll( t ) t.read()
52 #endif
53 
54 #ifdef Q_OS_WIN32
55 # include <windows.h>
56 # include <math.h>
57 #endif
58 #ifdef Q_OS_UNIX
59 # include <unistd.h>
60 #endif
61 
62 #if defined(Q_OS_WIN32) && !defined(LIB_NO_DLL)
63 # define LIB_DLLIMPORT __declspec(dllimport)
64 # define LIB_DLLEXPORT __declspec(dllexport)
65 #else
66 # define LIB_DLLIMPORT
67 # define LIB_DLLEXPORT
68 #endif
69 
70 #if defined (Q_CC_MSVC)
71 #define TEMPLATE_EXTERN extern
72 #else
73 #define TEMPLATE_EXTERN
74 #endif
75 
76 #ifdef QDATASCHEMA_EXPORT
77 # define LIB_EXPORT LIB_DLLEXPORT
78 #else
79 # define LIB_EXPORT LIB_DLLIMPORT
80 #endif
81 
82 #ifdef QDATASCHEMA_EXPORT
83 # define LIB_TEMPLATE_EXTERN
84 #else
85 # define LIB_TEMPLATE_EXTERN TEMPLATE_EXTERN
86 #endif
87 
88 #if defined(Q_CC_MSVC)
89 # define vsnprintf _vsnprintf
90 #endif
91 
92 
93 class QDS
94 {
95 public:
99  enum MO_Type { MO_ROOT, MO_CLASS, MO_ATTR, MO_RELATION };
100 
101  static int version();
102 };
103 
104 
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);
112 #endif
Пространство имен QDataSchema.
Definition: qdataschemaglobal.h:93
MO_Type
Definition: qdataschemaglobal.h:99