Zen
A cross-platform functional programming language

/home/renji/Data/projects/zenlang/sources/zbl/pch.hpp

Go to the documentation of this file.
00001 
00007 #pragma once
00008 
00009 #ifdef _WIN32
00010 
00011 // windows only
00012 #ifndef _WIN32_WINNT            // Specifies that the minimum required platform is Windows Vista.
00013 #define _WIN32_WINNT 0x0600     // Change this to the appropriate value to target other versions of Windows.
00014 #endif
00015 
00016 #include <stdio.h>
00017 #include <tchar.h>
00018 #pragma warning (disable:4512) // Assignment operator could not be generated
00019 #pragma warning (disable:4239) // non-standard extension
00020 #pragma warning (disable:4127) // conditional expr is constant
00021 #pragma warning (disable:4355) // this used in base ctor initialization.
00022 
00023 #endif
00024 
00025 #include <QtCore>
00026 #include <QtCore/QtDebug>
00027 #include <QtCore/QCoreApplication>
00028 #include <QtCore/QQueue>
00029 #include <QtCore/QStack>
00030 #include <QtSql/QSqlDatabase>
00031 #include <QtSql/QSqlQuery>
00032 #include <QtSql/QSqlError>
00033 
00034 #if !defined(ZEN_NO_GUI)
00035 #include <QtGui/QApplication>
00036 #include <QtDeclarative/QDeclarativeView>
00037 #include <QtDeclarative/QDeclarativeItem>
00038 #include <QtDeclarative/QDeclarativeContext>
00039 #endif
00040 
00041 #ifdef _DEBUG
00042 #include <typeinfo>
00043 #endif
00044 
00045 #define PCH_INCLUDED
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines