]> git.sven.stormbind.net Git - sven/vym.git/blob - src/export-ascii.h
New upstream version 2.9.27
[sven/vym.git] / src / export-ascii.h
1 #ifndef EXPORT_ASCII_H
2 #define EXPORT_ASCII_H
3
4 #include "export-base.h"
5
6 class ExportASCII : public ExportBase {
7   public:
8     ExportASCII();
9     virtual void doExport();
10     QString underline(const QString &text, const QString &line);
11     QString ensureEmptyLines(QString &text, int n);
12     QString ensureNewLine(QString &text);
13 };
14
15 #endif