]> git.sven.stormbind.net Git - sven/vym.git/blob - src/export-latex.h
New upstream version 2.9.22
[sven/vym.git] / src / export-latex.h
1 #ifndef EXPORT_LATEX_H
2 #define EXPORT_LATEX_H
3
4 #include "export-base.h"
5
6 class ExportLaTeX : public ExportBase {
7   public:
8     ExportLaTeX();
9     QString escapeLaTeX(const QString &s);
10     virtual void doExport();
11
12   private:
13     QHash<QString, QString> esc;
14 };
15
16 #endif