127 lines
4.0 KiB
C++
127 lines
4.0 KiB
C++
/***************************************************************************
|
|
* Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef BASE_PRECOMPILED_H
|
|
#define BASE_PRECOMPILED_H
|
|
|
|
#include <FCConfig.h>
|
|
|
|
#ifdef _PreComp_
|
|
|
|
// Python
|
|
#include <Python.h>
|
|
|
|
// standard
|
|
#include <fcntl.h>
|
|
#include <cstdio>
|
|
#include <cassert>
|
|
#include <time.h>
|
|
#include <cfloat>
|
|
#ifdef FC_OS_WIN32
|
|
#define _USE_MATH_DEFINES
|
|
#endif // FC_OS_WIN32
|
|
#include <cmath>
|
|
#include <climits>
|
|
|
|
#ifdef FC_OS_WIN32
|
|
#include <direct.h>
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define NOMINMAX
|
|
#include <windows.h>
|
|
#include <crtdbg.h>
|
|
#include <shellapi.h>
|
|
#include <Rpc.h>
|
|
#endif
|
|
|
|
// STL
|
|
#include <string>
|
|
#include <list>
|
|
#include <map>
|
|
#include <vector>
|
|
#include <set>
|
|
#include <stack>
|
|
#include <queue>
|
|
#include <memory>
|
|
#include <bitset>
|
|
|
|
//streams
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
|
|
// Xerces
|
|
#include <xercesc/util/PlatformUtils.hpp>
|
|
#include <xercesc/util/XercesVersion.hpp>
|
|
#include <xercesc/dom/DOM.hpp>
|
|
#include <xercesc/dom/DOMImplementation.hpp>
|
|
#include <xercesc/dom/DOMImplementationLS.hpp>
|
|
#if (XERCES_VERSION_MAJOR == 2)
|
|
#include <xercesc/dom/DOMWriter.hpp>
|
|
#endif
|
|
#include <xercesc/dom/DOMDocument.hpp>
|
|
#include <xercesc/dom/DOMElement.hpp>
|
|
#include <xercesc/dom/DOMText.hpp>
|
|
#include <xercesc/framework/StdOutFormatTarget.hpp>
|
|
#include <xercesc/framework/LocalFileFormatTarget.hpp>
|
|
#include <xercesc/framework/LocalFileInputSource.hpp>
|
|
#include <xercesc/parsers/XercesDOMParser.hpp>
|
|
#include <xercesc/util/XMLUni.hpp>
|
|
#include <xercesc/util/XMLUniDefs.hpp>
|
|
#include <xercesc/util/XMLString.hpp>
|
|
#include <xercesc/util/platformutils.hpp>
|
|
#include <xercesc/sax/SAXParseException.hpp>
|
|
#include <xercesc/sax/ErrorHandler.hpp>
|
|
#include <xercesc/sax/SAXParseException.hpp>
|
|
#include <xercesc/sax/SAXException.hpp>
|
|
#include <xercesc/sax2/Attributes.hpp>
|
|
#include <xercesc/sax2/DefaultHandler.hpp>
|
|
#include <xercesc/sax2/Attributes.hpp>
|
|
#include <xercesc/sax2/SAX2XMLReader.hpp>
|
|
#include <xercesc/sax2/XMLReaderFactory.hpp>
|
|
|
|
#include <boost/filesystem/path.hpp>
|
|
#include <boost/filesystem/operations.hpp>
|
|
#include <boost/filesystem/exception.hpp>
|
|
#include <boost/regex.hpp>
|
|
|
|
// QtCore
|
|
#include <QBuffer>
|
|
#include <QByteArray>
|
|
#include <QCoreApplication>
|
|
#include <QEvent>
|
|
#include <QIODevice>
|
|
#include <QDataStream>
|
|
#include <QDateTime>
|
|
#include <QWriteLocker>
|
|
#include <QReadLocker>
|
|
#include <QReadWriteLock>
|
|
#include <QMutex>
|
|
#include <QMutexLocker>
|
|
#include <QUuid>
|
|
|
|
|
|
#endif //_PreComp_
|
|
|
|
#endif // BASE_PRECOMPILED_H
|
|
|