mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-26 22:27:06 +08:00
21 lines
541 B
C
21 lines
541 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;
|
||
|
void saveFile(QIODevice *f, const QVariant &contents,
|
||
|
const QStringList &options) const override;
|
||
|
};
|
||
|
|
||
|
#endif // DEBUGTEXTDUMPER_H
|