okular/generators/txt/converter.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
950 B
C
Raw Normal View History

/***************************************************************************
* Copyright (C) 2013 by Azat Khuzhin <a3at.mail@gmail.com> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef TXT_CONVERTER_H
#define TXT_CONVERTER_H
#include <core/document.h>
#include <core/textdocumentgenerator.h>
namespace Txt
{
class Converter : public Okular::TextDocumentConverter
{
2016-10-29 14:32:24 +00:00
Q_OBJECT
public:
Converter();
~Converter() override;
2017-03-02 19:39:24 +00:00
QTextDocument *convert(const QString &fileName) override;
};
}
#endif