2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file options.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
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <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
|
2014-05-13 10:08:37 +02:00
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-07-03 14:29:26 +02:00
|
|
|
#ifndef OPTIONS_H
|
|
|
|
#define OPTIONS_H
|
|
|
|
|
2014-06-03 14:15:17 +02:00
|
|
|
#include <csignal>
|
2014-10-03 12:32:12 +02:00
|
|
|
#include <QtGlobal>
|
2014-06-03 14:15:17 +02:00
|
|
|
|
|
|
|
#ifdef Q_OS_WIN32
|
2014-10-23 23:44:50 +02:00
|
|
|
# if defined( Q_CC_MSVC ) // MSVC USED
|
|
|
|
# ifndef NOMINMAX
|
|
|
|
# define NOMINMAX // DISABLE min/max MACROS
|
|
|
|
# endif
|
|
|
|
# endif /*Q_CC_MSVC*/
|
|
|
|
# include <windows.h>
|
2014-10-08 10:51:17 +02:00
|
|
|
|
|
|
|
extern Q_CORE_EXPORT int qt_ntfs_permission_lookup;
|
2014-06-03 14:15:17 +02:00
|
|
|
#endif /*Q_OS_WIN32*/
|
2013-08-28 10:55:11 +02:00
|
|
|
|
2014-06-08 20:10:57 +02:00
|
|
|
class QString;
|
2014-10-02 11:46:24 +02:00
|
|
|
class QStringList;
|
2014-06-08 20:10:57 +02:00
|
|
|
|
2014-09-01 16:47:44 +02:00
|
|
|
static const quint32 null_id = 0;
|
|
|
|
|
2014-01-09 12:39:58 +01:00
|
|
|
#define SceneSize 50000
|
2014-07-23 10:56:32 +02:00
|
|
|
#define DefPointRadius 2.0//mm
|
2014-09-01 16:47:44 +02:00
|
|
|
#define NULL_ID null_id//use this value for initialization variables that keeps id values. 0 mean uknown id value.
|
2014-10-29 11:57:58 +01:00
|
|
|
#define NULL_ID_STR "0"
|
2014-01-09 12:39:58 +01:00
|
|
|
|
2014-09-04 15:42:16 +02:00
|
|
|
extern const QString nameRegExp;
|
2014-10-24 16:23:41 +02:00
|
|
|
extern const QString degreeSymbol;
|
2014-09-04 15:42:16 +02:00
|
|
|
|
2014-08-17 17:50:33 +02:00
|
|
|
enum class SceneObject : char { Point, Line, Spline, Arc, SplinePath, Detail, Unknown };
|
2014-08-26 19:23:08 +02:00
|
|
|
enum class Tool : unsigned char
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-26 19:23:08 +02:00
|
|
|
Arrow,
|
|
|
|
Point,
|
|
|
|
LinePoint,
|
|
|
|
AbstractSpline,
|
|
|
|
Cut,
|
|
|
|
SinglePoint,
|
|
|
|
EndLine,
|
|
|
|
Line,
|
|
|
|
AlongLine,
|
|
|
|
ShoulderPoint,
|
|
|
|
Normal,
|
|
|
|
Bisector,
|
|
|
|
LineIntersect,
|
|
|
|
Spline,
|
|
|
|
CutSpline,
|
|
|
|
CutArc,
|
|
|
|
Arc,
|
|
|
|
SplinePath,
|
|
|
|
CutSplinePath,
|
2014-06-12 09:22:29 +02:00
|
|
|
PointOfContact,
|
2014-08-26 19:23:08 +02:00
|
|
|
Detail,
|
2014-06-12 09:22:29 +02:00
|
|
|
NodePoint,
|
|
|
|
NodeArc,
|
|
|
|
NodeSpline,
|
|
|
|
NodeSplinePath,
|
|
|
|
Height,
|
|
|
|
Triangle,
|
2014-10-20 19:41:02 +02:00
|
|
|
LineIntersectAxis,
|
2014-10-23 10:38:57 +02:00
|
|
|
CurveIntersectAxis,
|
2014-06-12 09:22:29 +02:00
|
|
|
PointOfIntersection,
|
2014-10-23 10:38:57 +02:00
|
|
|
UnionDetails // 30
|
2014-06-12 09:22:29 +02:00
|
|
|
};
|
2013-07-25 14:00:51 +02:00
|
|
|
|
2014-08-26 19:23:08 +02:00
|
|
|
enum class Vis : unsigned char
|
|
|
|
{
|
2014-10-23 10:38:57 +02:00
|
|
|
ControlPointSpline = 31, // increase this value if need more positions in Tool enum
|
2014-08-26 19:23:08 +02:00
|
|
|
GraphicsSimpleTextItem,
|
2014-09-03 18:09:59 +02:00
|
|
|
SimpleSplinePath,
|
2014-08-26 19:23:08 +02:00
|
|
|
Line,
|
|
|
|
Path,
|
|
|
|
ToolAlongLine,
|
|
|
|
ToolArc,
|
|
|
|
ToolBisector,
|
|
|
|
ToolCutArc,
|
|
|
|
ToolEndLine,
|
|
|
|
ToolHeight,
|
|
|
|
ToolLine,
|
|
|
|
ToolLineIntersect,
|
|
|
|
ToolNormal,
|
|
|
|
ToolPointOfContact,
|
|
|
|
ToolPointOfIntersection,
|
|
|
|
ToolShoulderPoint,
|
|
|
|
ToolSpline,
|
2014-09-06 14:47:25 +02:00
|
|
|
ToolTriangle,
|
|
|
|
ToolCutSpline,
|
|
|
|
ToolSplinePath,
|
2014-10-20 19:41:02 +02:00
|
|
|
ToolCutSplinePath,
|
2014-10-23 10:38:57 +02:00
|
|
|
ToolLineIntersectAxis,
|
|
|
|
ToolCurveIntersectAxis
|
2014-08-26 19:23:08 +02:00
|
|
|
};
|
|
|
|
|
2014-06-12 09:22:29 +02:00
|
|
|
enum class Source : char { FromGui, FromFile, FromTool };
|
|
|
|
enum class Draw : char { Calculation, Modeling };
|
|
|
|
enum class Unit : char { Mm, Cm, Inch };
|
|
|
|
enum class MeasurementsType : char { Standard, Individual };
|
2014-08-20 12:33:29 +02:00
|
|
|
enum class NodeDetail : char { Contour, Modeling };
|
2014-08-20 13:11:12 +02:00
|
|
|
enum class Contour : char { OpenContour, CloseContour };
|
|
|
|
enum class EquidistantType : char { OpenEquidistant, CloseEquidistant };
|
2014-08-20 14:01:35 +02:00
|
|
|
enum class GOType : char { Point, Arc, Spline, SplinePath, Unknown };
|
2014-08-20 16:05:19 +02:00
|
|
|
enum class SplinePointPosition : char { FirstPoint, LastPoint };
|
2014-08-20 17:58:10 +02:00
|
|
|
enum class VarType : char { Measurement, Increment, LineLength, SplineLength, ArcLength, LineAngle, Unknown };
|
2014-03-11 16:04:04 +01:00
|
|
|
|
2014-08-08 18:07:44 +02:00
|
|
|
enum class GHeights : unsigned char { ALL,
|
|
|
|
H92=92, H98=98, H104=104, H110=110, H116=116, H122=122, H128=128, H134=134,
|
2014-08-07 14:03:24 +02:00
|
|
|
H140=140, H146=146, H152=152, H158=158, H164=164, H170=170, H176=176, H182=182,
|
2014-08-07 16:05:37 +02:00
|
|
|
H188=188, H194=194};
|
2014-08-07 14:03:24 +02:00
|
|
|
|
2014-08-08 18:07:44 +02:00
|
|
|
enum class GSizes : unsigned char { ALL,
|
|
|
|
S22=22, S24=24, S26=26, S28=28, S30=30, S32=32, S34=34, S36=36, S38=38, S40=40,
|
2014-08-07 14:03:24 +02:00
|
|
|
S42=42, S44=44, S46=46, S48=48, S50=50, S52=52, S54=54, S56=56 };
|
|
|
|
|
2014-05-13 10:08:37 +02:00
|
|
|
// measurements
|
2014-09-16 21:08:48 +02:00
|
|
|
//head and neck
|
2014-05-16 13:17:25 +02:00
|
|
|
extern const QString headGirth_M;
|
|
|
|
extern const QString midNeckGirth_M;
|
|
|
|
extern const QString neckBaseGirth_M;
|
|
|
|
extern const QString headAndNeckLength_M;
|
2014-09-16 21:08:48 +02:00
|
|
|
//torso
|
2014-05-16 13:17:25 +02:00
|
|
|
extern const QString centerFrontWaistLength_M;
|
|
|
|
extern const QString centerBackWaistLength_M;
|
|
|
|
extern const QString shoulderLength_M;
|
|
|
|
extern const QString sideWaistLength_M;
|
|
|
|
extern const QString trunkLength_M;
|
|
|
|
extern const QString shoulderGirth_M;
|
|
|
|
extern const QString upperChestGirth_M;
|
|
|
|
extern const QString bustGirth_M;
|
|
|
|
extern const QString underBustGirth_M;
|
|
|
|
extern const QString waistGirth_M;
|
|
|
|
extern const QString highHipGirth_M;
|
|
|
|
extern const QString hipGirth_M;
|
|
|
|
extern const QString upperFrontChestWidth_M;
|
|
|
|
extern const QString frontChestWidth_M;
|
|
|
|
extern const QString acrossFrontShoulderWidth_M;
|
|
|
|
extern const QString acrossBackShoulderWidth_M;
|
|
|
|
extern const QString upperBackWidth_M;
|
|
|
|
extern const QString backWidth_M;
|
|
|
|
extern const QString bustpointToBustpoint_M;
|
|
|
|
extern const QString halterBustpointToBustpoint_M;
|
|
|
|
extern const QString neckToBustpoint_M;
|
|
|
|
extern const QString crotchLength_M;
|
|
|
|
extern const QString riseHeight_M;
|
|
|
|
extern const QString shoulderDrop_M;
|
|
|
|
extern const QString shoulderSlopeDegrees_M;
|
|
|
|
extern const QString frontShoulderSlopeLength_M;
|
|
|
|
extern const QString backShoulderSlopeLength_M;
|
|
|
|
extern const QString frontShoulderToWaistLength_M;
|
|
|
|
extern const QString backShoulderToWaistLength_M;
|
|
|
|
extern const QString frontNeckArc_M;
|
|
|
|
extern const QString backNeckArc_M;
|
|
|
|
extern const QString frontUpperChestArc_M;
|
|
|
|
extern const QString backUpperChestArc_M;
|
|
|
|
extern const QString frontWaistArc_M;
|
|
|
|
extern const QString backWaistArc_M;
|
|
|
|
extern const QString frontUpperHipArc_M;
|
|
|
|
extern const QString backUpperHipArc_M;
|
|
|
|
extern const QString frontHipArc_M;
|
|
|
|
extern const QString backHipArc_M;
|
|
|
|
extern const QString chestSlope_M;
|
|
|
|
extern const QString backSlope_M;
|
|
|
|
extern const QString frontWaistSlope_M;
|
|
|
|
extern const QString backWaistSlope_M;
|
|
|
|
extern const QString frontNeckToUpperChestHeight_M;
|
|
|
|
extern const QString frontNeckToBustHeight_M;
|
2014-09-16 21:08:48 +02:00
|
|
|
extern const QString frontWaistToUpperChest_M;
|
|
|
|
extern const QString frontWaistToLowerBreast_M;
|
|
|
|
extern const QString backWaistToUpperChest_M;
|
|
|
|
extern const QString strapLength_M;
|
|
|
|
//arm
|
2014-05-16 13:17:25 +02:00
|
|
|
extern const QString armscyeGirth_M;
|
|
|
|
extern const QString elbowGirth_M;
|
|
|
|
extern const QString upperArmGirth_M;
|
|
|
|
extern const QString wristGirth_M;
|
|
|
|
extern const QString scyeDepth_M;
|
|
|
|
extern const QString shoulderAndArmLength_M;
|
|
|
|
extern const QString underarmLength_M;
|
|
|
|
extern const QString cervicaleToWristLength_M;
|
|
|
|
extern const QString shoulderToElbowLength_M;
|
|
|
|
extern const QString armLength_M;
|
2014-09-16 21:08:48 +02:00
|
|
|
//hand
|
2014-05-16 13:17:25 +02:00
|
|
|
extern const QString handWidth_M;
|
|
|
|
extern const QString handLength_M;
|
|
|
|
extern const QString handGirth_M;
|
2014-09-16 21:08:48 +02:00
|
|
|
//leg
|
2014-05-16 13:17:25 +02:00
|
|
|
extern const QString thighGirth_M;
|
|
|
|
extern const QString midThighGirth_M;
|
|
|
|
extern const QString kneeGirth_M;
|
|
|
|
extern const QString calfGirth_M;
|
|
|
|
extern const QString ankleGirth_M;
|
|
|
|
extern const QString kneeHeight_M;
|
|
|
|
extern const QString ankleHeight_M;
|
2014-09-16 21:08:48 +02:00
|
|
|
//foot
|
2014-05-16 13:17:25 +02:00
|
|
|
extern const QString footWidth_M;
|
|
|
|
extern const QString footLength_M;
|
2014-09-16 21:08:48 +02:00
|
|
|
//heights
|
2014-05-16 13:17:25 +02:00
|
|
|
extern const QString height_M;
|
|
|
|
extern const QString cervicaleHeight_M;
|
|
|
|
extern const QString cervicaleToKneeHeight_M;
|
|
|
|
extern const QString waistHeight_M;
|
|
|
|
extern const QString highHipHeight_M;
|
|
|
|
extern const QString hipHeight_M;
|
|
|
|
extern const QString waistToHipHeight_M;
|
|
|
|
extern const QString waistToKneeHeight_M;
|
|
|
|
extern const QString crotchHeight_M;
|
2014-05-15 15:18:31 +02:00
|
|
|
//extended measurements
|
2014-05-16 13:17:25 +02:00
|
|
|
extern const QString size_M;
|
|
|
|
extern const QString heightFrontNeckBasePoint_M;
|
|
|
|
extern const QString heightBaseNeckSidePoint_M;
|
|
|
|
extern const QString heightShoulderPoint_M;
|
|
|
|
extern const QString heightNipplePoint_M;
|
|
|
|
extern const QString heightBackAngleAxilla_M;
|
|
|
|
extern const QString heightScapularPoint_M;
|
|
|
|
extern const QString heightUnderButtockFolds_M;
|
|
|
|
extern const QString hipsExcludingProtrudingAbdomen_M;
|
|
|
|
extern const QString girthFootInstep_M;
|
|
|
|
extern const QString sideWaistToFloor_M;
|
|
|
|
extern const QString frontWaistToFloor_M;
|
|
|
|
extern const QString arcThroughGroinArea_M;
|
|
|
|
extern const QString waistToPlaneSeat_M;
|
|
|
|
extern const QString neckToRadialPoint_M;
|
|
|
|
extern const QString neckToThirdFinger_M;
|
|
|
|
extern const QString neckToFirstLineChestCircumference_M;
|
|
|
|
extern const QString frontWaistLength_M;
|
|
|
|
extern const QString arcThroughShoulderJoint_M;
|
|
|
|
extern const QString neckToBackLineChestCircumference_M;
|
|
|
|
extern const QString waistToNeckSide_M;
|
|
|
|
extern const QString arcLengthUpperBody_M;
|
|
|
|
extern const QString chestWidth_M;
|
|
|
|
extern const QString anteroposteriorDiameterHands_M;
|
|
|
|
extern const QString heightClavicularPoint_M;
|
|
|
|
extern const QString heightArmholeSlash_M;
|
|
|
|
extern const QString slashShoulderHeight_M;
|
|
|
|
extern const QString halfGirthNeck_M;
|
|
|
|
extern const QString halfGirthNeckForShirts_M;
|
|
|
|
extern const QString halfGirthChestFirst_M;
|
|
|
|
extern const QString halfGirthChestSecond_M;
|
|
|
|
extern const QString halfGirthChestThird_M;
|
|
|
|
extern const QString halfGirthWaist_M;
|
|
|
|
extern const QString halfGirthHipsConsideringProtrudingAbdomen_M;
|
|
|
|
extern const QString halfGirthHipsExcludingProtrudingAbdomen_M;
|
|
|
|
extern const QString girthKneeFlexedFeet_M;
|
|
|
|
extern const QString neckTransverseDiameter_M;
|
|
|
|
extern const QString frontSlashShoulderHeight_M;
|
|
|
|
extern const QString neckToFrontWaistLine_M;
|
|
|
|
extern const QString handVerticalDiameter_M;
|
|
|
|
extern const QString neckToKneePoint_M;
|
|
|
|
extern const QString waistToKnee_M;
|
|
|
|
extern const QString shoulderHeight_M;
|
|
|
|
extern const QString headHeight_M;
|
|
|
|
extern const QString bodyPosition_M;
|
|
|
|
extern const QString arcBehindShoulderGirdle_M;
|
|
|
|
extern const QString neckToNeckBase_M;
|
|
|
|
extern const QString depthWaistFirst_M;
|
|
|
|
extern const QString depthWaistSecond_M;
|
2014-05-13 10:08:37 +02:00
|
|
|
|
|
|
|
// variables name
|
|
|
|
extern const QString line_;
|
|
|
|
extern const QString angleLine_;
|
|
|
|
extern const QString arc_;
|
|
|
|
extern const QString spl_;
|
|
|
|
extern const QString splPath;
|
|
|
|
|
|
|
|
// functions
|
|
|
|
extern const QString sin_F;
|
|
|
|
extern const QString cos_F;
|
|
|
|
extern const QString tan_F;
|
|
|
|
extern const QString asin_F;
|
|
|
|
extern const QString acos_F;
|
|
|
|
extern const QString atan_F;
|
|
|
|
extern const QString sinh_F;
|
|
|
|
extern const QString cosh_F;
|
|
|
|
extern const QString tanh_F;
|
|
|
|
extern const QString asinh_F;
|
|
|
|
extern const QString acosh_F;
|
|
|
|
extern const QString atanh_F;
|
|
|
|
extern const QString log2_F;
|
|
|
|
extern const QString log10_F;
|
|
|
|
extern const QString log_F;
|
|
|
|
extern const QString ln_F;
|
|
|
|
extern const QString exp_F;
|
|
|
|
extern const QString sqrt_F;
|
|
|
|
extern const QString sign_F;
|
|
|
|
extern const QString rint_F;
|
|
|
|
extern const QString abs_F;
|
|
|
|
extern const QString min_F;
|
|
|
|
extern const QString max_F;
|
|
|
|
extern const QString sum_F;
|
|
|
|
extern const QString avg_F;
|
|
|
|
|
2014-10-02 11:46:24 +02:00
|
|
|
extern const QStringList builInFunctions;
|
|
|
|
|
2014-05-21 10:51:16 +02:00
|
|
|
// Postfix operators
|
|
|
|
extern const QString cm_Oprt;
|
|
|
|
extern const QString mm_Oprt;
|
|
|
|
extern const QString in_Oprt;
|
|
|
|
|
2014-06-03 14:15:17 +02:00
|
|
|
/*
|
|
|
|
* This macros SCASSERT (for Stop and Continue Assert) will break into the debugger on the line of the assert and allow
|
|
|
|
* you to continue afterwards should you choose to.
|
|
|
|
* idea: Q_ASSERT no longer pauses debugger - http://qt-project.org/forums/viewthread/13148
|
|
|
|
* Usefull links:
|
|
|
|
* 1. What's the difference between __PRETTY_FUNCTION__, __FUNCTION__, __func__? -
|
|
|
|
* https://stackoverflow.com/questions/4384765/whats-the-difference-between-pretty-function-function-func
|
|
|
|
*
|
|
|
|
* 2. Windows Predefined Macros - http://msdn.microsoft.com/library/b0084kay.aspx
|
|
|
|
*
|
|
|
|
* 3. Windows DebugBreak function - http://msdn.microsoft.com/en-us/library/ms679297%28VS.85%29.aspx
|
|
|
|
*
|
|
|
|
* 4. Continue to debug after failed assertion on Linux? [C/C++] -
|
|
|
|
* https://stackoverflow.com/questions/1721543/continue-to-debug-after-failed-assertion-on-linux-c-c
|
|
|
|
*/
|
|
|
|
#ifndef QT_NO_DEBUG
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
#ifdef Q_CC_MSVC
|
|
|
|
#define SCASSERT(cond) \
|
|
|
|
{ \
|
|
|
|
if (!(cond)) \
|
|
|
|
{ \
|
|
|
|
qDebug("ASSERT: %s in %s (%s:%u)", \
|
|
|
|
#cond, __FUNCSIG__, __FILE__, __LINE__); \
|
|
|
|
DebugBreak(); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define SCASSERT(cond) \
|
|
|
|
{ \
|
|
|
|
if (!(cond)) \
|
|
|
|
{ \
|
|
|
|
qDebug("ASSERT: %s in %s (%s:%u)", \
|
|
|
|
#cond, __PRETTY_FUNCTION__, __FILE__, __LINE__);\
|
|
|
|
DebugBreak(); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
|
|
|
|
#endif /*Q_CC_MSVC*/
|
|
|
|
#else
|
|
|
|
#define SCASSERT(cond) \
|
|
|
|
{ \
|
|
|
|
if (!(cond)) \
|
|
|
|
{ \
|
|
|
|
qDebug("ASSERT: %s in %s (%s:%u)", \
|
|
|
|
#cond, __PRETTY_FUNCTION__, __FILE__, __LINE__);\
|
|
|
|
std::raise(SIGTRAP); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
|
|
|
|
#endif /* Q_OS_WIN32 */
|
2014-05-31 21:27:59 +02:00
|
|
|
#else // define but disable this function if debugging is not set
|
2014-05-31 21:43:03 +02:00
|
|
|
#define SCASSERT(cond) qt_noop();
|
2014-06-03 14:15:17 +02:00
|
|
|
#endif /* QT_NO_DEBUG */
|
|
|
|
|
2014-10-17 22:26:30 +02:00
|
|
|
// Detect whether the compiler supports C++11 noexcept exception specifications.
|
|
|
|
# if defined(__clang__)
|
|
|
|
# if __has_feature(cxx_noexcept)
|
|
|
|
# define V_NOEXCEPT_EXPR(x) noexcept(x) // Clang 3.0 and above have noexcept
|
|
|
|
# endif
|
|
|
|
# elif defined(__GNUC__)
|
|
|
|
# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) && defined(__GXX_EXPERIMENTAL_CXX0X__)
|
|
|
|
# define V_NOEXCEPT_EXPR(x) noexcept(x) // GCC 4.7 and following have noexcept
|
|
|
|
# endif
|
|
|
|
# elif defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 180021114
|
|
|
|
# define QMUP_NOEXCEPT_EXPR(x) noexcept(x)
|
|
|
|
# else
|
|
|
|
# define V_NOEXCEPT_EXPR(x)
|
|
|
|
# endif
|
|
|
|
|
2013-07-03 14:29:26 +02:00
|
|
|
#endif // OPTIONS_H
|