ad63118071
This lets us testFlag() instead of using raw bit-field operations. Pick-to: 6.6 6.5 Task-number: QTBUG-111228 Change-Id: I2c26e9a24728e81baa42cf14c75271a015460913 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
24 lines
711 B
C++
24 lines
711 B
C++
// Copyright (C) 2018 Intel Corporation.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef XMLCONVERTER_H
|
|
#define XMLCONVERTER_H
|
|
|
|
#include "converter.h"
|
|
|
|
class XmlConverter : public Converter
|
|
{
|
|
// Converter interface
|
|
public:
|
|
QString name() const override;
|
|
Directions directions() const override;
|
|
Options outputOptions() const override;
|
|
const char *optionsHelp() const override;
|
|
bool probeFile(QIODevice *f) const override;
|
|
QVariant loadFile(QIODevice *f, const Converter *&outputConverter) const override;
|
|
void saveFile(QIODevice *f, const QVariant &contents,
|
|
const QStringList &options) const override;
|
|
};
|
|
|
|
#endif // XMLCONVERTER_H
|