/*************************************************************************** * Copyright (c) 2023 David Carter * * * * 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 * * . * * * **************************************************************************/ #ifndef MATGUI_PRECOMPILED_H #define MATGUI_PRECOMPILED_H #include // 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 #endif #ifdef _PreComp_ // standard #include #include // STL #include #include #include #include #include // OpenCasCade // #include // Boost #include #include // Qt Toolkit #ifndef __QtAll__ #include #endif // // Inventor includes OpenGL // #ifndef __InventorAll__ // # include // #endif #endif //_PreComp_ #endif // MATGUI_PRECOMPILED_H