]> git.sven.stormbind.net Git - sven/vym.git/blob - export-latex.h
5e3fd141d4dbcdfbac3bd04283d8a0a2b07e0d9a
[sven/vym.git] / 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