2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2015-06-18 19:23:24 +02:00
|
|
|
** @file stable.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2013-11-15 13:41:26 +01:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
#ifndef STABLE_H
|
|
|
|
#define STABLE_H
|
2013-07-03 14:29:26 +02:00
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
/* 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 VTools library.\n")
|
2013-07-03 14:29:26 +02:00
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
/* Add C includes here */
|
2013-07-03 14:29:26 +02:00
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
#if defined __cplusplus
|
|
|
|
/* Add C++ includes here */
|
|
|
|
#include <csignal>
|
2015-02-03 11:17:04 +01:00
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
/*In all cases we need include core header for getting defined values*/
|
|
|
|
//#ifdef QT_CORE_LIB
|
|
|
|
//# include <QtCore>
|
|
|
|
//#endif
|
2015-02-03 11:17:04 +01:00
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
#ifdef QT_GUI_LIB
|
|
|
|
# include <QtGui>
|
|
|
|
#endif
|
2014-06-02 16:28:02 +02:00
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
#ifdef QT_XML_LIB
|
|
|
|
# include <QtXml>
|
|
|
|
#endif
|
2014-06-02 16:28:02 +02:00
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
//In Windows you can't use same header in all modes.
|
|
|
|
#if !defined(Q_OS_WIN)
|
|
|
|
# ifdef QT_WIDGETS_LIB
|
|
|
|
# include <QtWidgets>
|
|
|
|
# endif
|
2013-07-03 14:29:26 +02:00
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
# ifdef QT_SVG_LIB
|
|
|
|
# include <QtSvg/QtSvg>
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef QT_PRINTSUPPORT_LIB
|
|
|
|
# include <QtPrintSupport>
|
|
|
|
# endif
|
|
|
|
|
|
|
|
//Build doesn't work, if include this headers on Windows.
|
|
|
|
# ifdef QT_XMLPATTERNS_LIB
|
|
|
|
# include <QtXmlPatterns>
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef QT_NETWORK_LIB
|
|
|
|
# include <QtNetwork>
|
|
|
|
# endif
|
|
|
|
#endif/*Q_OS_WIN*/
|
|
|
|
|
|
|
|
#endif /*__cplusplus*/
|
|
|
|
|
|
|
|
#endif // STABLE_H
|