75 lines
2.5 KiB
C++
75 lines
2.5 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2023 David Carter <dcarter@david.carter.ca> *
|
|
* *
|
|
* This file is part of FreeCAD. *
|
|
* *
|
|
* FreeCAD is free software: you can redistribute it and/or modify it *
|
|
* under the terms of the GNU Lesser General Public License as *
|
|
* published by the Free Software Foundation, either version 2.1 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* FreeCAD 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 *
|
|
* Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with FreeCAD. If not, see *
|
|
* <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
**************************************************************************/
|
|
|
|
#ifndef MATERIAL_PRECOMPILED_H
|
|
#define MATERIAL_PRECOMPILED_H
|
|
|
|
#include <FCConfig.h>
|
|
|
|
// point at which warnings of overly long specifiers disabled (needed for VC6)
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable : 4251)
|
|
#pragma warning(disable : 4503)
|
|
#pragma warning(disable : 4786) // specifier longer then 255 chars
|
|
#pragma warning(disable : 4273)
|
|
#endif
|
|
|
|
#ifdef FC_OS_WIN32
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
#ifdef _PreComp_
|
|
|
|
// standard
|
|
#include <cfloat>
|
|
#include <cmath>
|
|
|
|
// STL
|
|
#include <algorithm>
|
|
#include <fstream>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <random>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
// Qt
|
|
#include <QtGlobal>
|
|
#include <QDirIterator>
|
|
#include <QFileInfo>
|
|
#include <QIODevice>
|
|
#include <QList>
|
|
#include <QMetaType>
|
|
#include <QMetaType>
|
|
#include <QRegularExpression>
|
|
#include <QString>
|
|
#include <QTextStream>
|
|
#include <QUuid>
|
|
#include <QVector>
|
|
|
|
#endif //_PreComp_
|
|
|
|
#endif // MATERIAL_PRECOMPILED_H
|