2014-08-20 19:17:47 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vcurvelength_p.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 20 8, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2014-08-20 19:17:47 +02:00
|
|
|
** <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 VCURVELENGTH_P_H
|
|
|
|
#define VCURVELENGTH_P_H
|
|
|
|
|
|
|
|
#include <QSharedData>
|
|
|
|
|
2015-06-12 10:55:44 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
|
|
|
|
2014-08-23 08:18:07 +02:00
|
|
|
#ifdef Q_CC_GNU
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Weffc++"
|
|
|
|
#endif
|
|
|
|
|
2015-06-01 14:42:47 +02:00
|
|
|
class VCurveVariableData : public QSharedData
|
2014-08-20 19:17:47 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-06-01 14:42:47 +02:00
|
|
|
VCurveVariableData()
|
2014-08-20 19:17:47 +02:00
|
|
|
:id(NULL_ID), parentId(NULL_ID)
|
|
|
|
{}
|
|
|
|
|
2015-06-01 14:42:47 +02:00
|
|
|
VCurveVariableData(const quint32 &id, const quint32 &parentId)
|
2014-08-20 19:17:47 +02:00
|
|
|
:id(id), parentId(parentId)
|
|
|
|
{}
|
|
|
|
|
2015-06-01 14:42:47 +02:00
|
|
|
VCurveVariableData(const VCurveVariableData &var)
|
2014-08-20 19:17:47 +02:00
|
|
|
:QSharedData(var), id(var.id), parentId(var.parentId)
|
|
|
|
{}
|
|
|
|
|
2015-06-01 14:42:47 +02:00
|
|
|
virtual ~VCurveVariableData();
|
2014-08-20 19:17:47 +02:00
|
|
|
|
|
|
|
quint32 id;
|
|
|
|
quint32 parentId;
|
2015-10-31 13:56:28 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
VCurveVariableData &operator=(const VCurveVariableData &) Q_DECL_EQ_DELETE;
|
2014-08-20 19:17:47 +02:00
|
|
|
};
|
|
|
|
|
2015-06-01 14:42:47 +02:00
|
|
|
VCurveVariableData::~VCurveVariableData()
|
2014-09-11 18:52:02 +02:00
|
|
|
{}
|
|
|
|
|
2014-08-23 08:18:07 +02:00
|
|
|
#ifdef Q_CC_GNU
|
2014-09-11 18:52:02 +02:00
|
|
|
#pragma GCC diagnostic pop
|
2014-08-23 08:18:07 +02:00
|
|
|
#endif
|
2014-08-20 19:17:47 +02:00
|
|
|
|
|
|
|
#endif // VCURVELENGTH_P_H
|