2015-05-31 11:17:09 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file VArcRadiusData.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 30 5, 2015
|
|
|
|
**
|
|
|
|
** @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) 2015 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
|
|
**
|
|
|
|
** Valentina 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.
|
|
|
|
**
|
|
|
|
** Valentina 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 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VARCRADIUSDATA_H
|
|
|
|
#define VARCRADIUSDATA_H
|
|
|
|
|
|
|
|
#include <QSharedData>
|
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
#include "../vmisc/diagnostic.h"
|
|
|
|
|
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Weffc++")
|
2015-05-31 11:17:09 +02:00
|
|
|
|
|
|
|
class VArcRadiusData : public QSharedData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
VArcRadiusData()
|
|
|
|
:arcId(NULL_ID)
|
|
|
|
{}
|
|
|
|
|
|
|
|
VArcRadiusData(const quint32 &arcId)
|
|
|
|
:arcId(arcId)
|
|
|
|
{}
|
|
|
|
|
|
|
|
VArcRadiusData(const VArcRadiusData &var)
|
|
|
|
:QSharedData(var), arcId(var.arcId)
|
|
|
|
{}
|
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VArcRadiusData() Q_DECL_OVERRIDE;
|
2015-05-31 11:17:09 +02:00
|
|
|
|
|
|
|
quint32 arcId;
|
2015-10-31 13:56:28 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
VArcRadiusData &operator=(const VArcRadiusData &) Q_DECL_EQ_DELETE;
|
2015-05-31 11:17:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
VArcRadiusData::~VArcRadiusData()
|
|
|
|
{}
|
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_POP
|
2015-05-31 11:17:09 +02:00
|
|
|
|
|
|
|
#endif // VARCRADIUSDATA_H
|