valentina/src/libs/vpropertyexplorer/stable.h

82 lines
1.9 KiB
C
Raw Normal View History

2014-09-20 18:05:21 +02:00
/************************************************************************
**
** @file stable.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 20 9, 2014
**
** @brief
** @copyright
** All rights reserved. This program and the accompanying materials
** are made available under the terms of the GNU Lesser General Public License
** (LGPL) version 2.1 which accompanies this distribution, and is available at
** http://www.gnu.org/licenses/lgpl-2.1.html
**
** 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
** Lesser General Public License for more details.
**
*************************************************************************/
#ifndef STABLE_H
#define STABLE_H
/* I like to include this pragma too, so the build log indicates if pre-compiled headers were in use. */
#pragma message("Compiling precompiled headers for VPropertyExplorer library.\n")
/* Add C includes here */
#if defined __cplusplus
/* Add C++ includes here */
/*In all cases we need include core header for getting defined values*/
#ifdef QT_CORE_LIB
# include <QtCore>
#endif
2023-01-06 17:50:27 +01:00
#ifdef QT_GUI_LIB
# include <QtGui>
#endif
#ifdef QT_XML_LIB
# include <QtXml>
#endif
2023-01-17 14:48:31 +01:00
#ifdef QT_WINEXTRAS_LIB
# include <QtWinExtras>
#endif
#ifdef QT_WIDGETS_LIB
# include <QtWidgets>
#endif
#ifdef QT_SVG_LIB
# include <QtSvg/QtSvg>
#endif
#ifdef QT_PRINTSUPPORT_LIB
# include <QtPrintSupport>
#endif
#ifdef QT_XMLPATTERNS_LIB
# include <QtXmlPatterns>
#endif
#ifdef QT_NETWORK_LIB
# include <QtNetwork>
#endif
#ifdef QT_CONCURRENT_LIB
# include <QtConcurrent>
#endif
2023-01-06 17:50:27 +01:00
2023-02-09 11:42:10 +01:00
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
#ifdef QT_OPENGLWIDGETS_LIB
# include <QOpenGLWidget>
#endif
#endif
2014-09-20 18:05:21 +02:00
#endif /*__cplusplus*/
#endif // STABLE_H