2013-09-18 21:16:19 +02:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2013 Valentina project All Rights Reserved.
|
|
|
|
**
|
|
|
|
** This file is part of Valentina.
|
|
|
|
**
|
|
|
|
** Tox is free software: you can redistribute it and/or modify
|
|
|
|
** 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-06 19:05:28 +01:00
|
|
|
#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.\n")
|
|
|
|
|
2013-08-29 15:12:30 +02:00
|
|
|
/* Add C includes here */
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
#if defined __cplusplus
|
|
|
|
/* Add C++ includes here */
|
2013-09-10 14:34:50 +02:00
|
|
|
#include <QtCore>
|
2013-09-10 14:29:06 +02:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QtGlobal>
|
|
|
|
#include <QtXml>
|
2013-09-10 14:34:50 +02:00
|
|
|
#include <QtWidgets>
|
|
|
|
#include <QtSvg/QtSvg>
|
2013-09-10 14:29:06 +02:00
|
|
|
#include "options.h"
|
|
|
|
#endif
|
2013-11-06 19:05:28 +01:00
|
|
|
|
|
|
|
#endif // STABLE_H
|