mirror of https://github.com/qt/qtbase.git
23 lines
656 B
C
23 lines
656 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() 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 // DEBUGTEXTDUMPER_H
|