mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 12:30:32 +08:00
23 lines
648 B
C++
23 lines
648 B
C++
// Copyright (C) 2018 Intel Corporation.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef NULLCONVERTER_H
|
|
#define NULLCONVERTER_H
|
|
|
|
#include "converter.h"
|
|
|
|
class NullConverter : public Converter
|
|
{
|
|
// Converter interface
|
|
public:
|
|
QString name() override;
|
|
Direction directions() override;
|
|
Options outputOptions() override;
|
|
const char *optionsHelp() override;
|
|
bool probeFile(QIODevice *f) override;
|
|
QVariant loadFile(QIODevice *f, Converter *&outputConverter) override;
|
|
void saveFile(QIODevice *f, const QVariant &contents, const QStringList &options) override;
|
|
};
|
|
|
|
#endif // NULLCONVERTER_H
|