mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
24 lines
723 B
C++
24 lines
723 B
C++
// Copyright (C) 2018 Intel Corporation.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef DEBUGTEXTDUMPER_H
|
|
#define DEBUGTEXTDUMPER_H
|
|
|
|
#include "converter.h"
|
|
|
|
class DebugTextDumper : 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 // DEBUGTEXTDUMPER_H
|