valentina/src/libs/ifc/xml/vlabeltemplateconverter.h

64 lines
2.3 KiB
C
Raw Normal View History

/************************************************************************
**
** @file
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 10 8, 2017
**
** @brief
** @copyright
** This source code is part of the Valentina project, a pattern making
** program, whose allow create and modeling patterns of clothing.
** Copyright (C) 2017 Valentina project
** <https://gitlab.com/smart-pattern/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 VLABELTEMPLATECONVERTER_H
#define VLABELTEMPLATECONVERTER_H
#include "vabstractconverter.h"
class VLabelTemplateConverter : public VAbstractConverter
{
public:
explicit VLabelTemplateConverter(const QString &fileName);
virtual ~VLabelTemplateConverter() Q_DECL_EQ_DEFAULT;
static const QString LabelTemplateMaxVerStr;
static const QString CurrentSchema;
2021-09-14 18:47:41 +02:00
static Q_DECL_CONSTEXPR const unsigned LabelTemplateMinVer = FormatVersion(1, 0, 0);
static Q_DECL_CONSTEXPR const unsigned LabelTemplateMaxVer = FormatVersion(1, 0, 0);
protected:
2021-09-14 18:47:41 +02:00
virtual unsigned MinVer() const override;
virtual unsigned MaxVer() const override;
virtual QString MinVerStr() const override;
virtual QString MaxVerStr() const override;
2021-09-14 18:47:41 +02:00
virtual QString XSDSchema(unsigned ver) const override;
virtual void ApplyPatches() override;
virtual void DowngradeToCurrentMaxVersion() override;
virtual bool IsReadOnly() const override {return false;}
private:
2022-08-12 17:50:13 +02:00
Q_DISABLE_COPY_MOVE(VLabelTemplateConverter) // NOLINT
static const QString LabelTemplateMinVerStr;
};
#endif // VLABELTEMPLATECONVERTER_H