X-Git-Url: https://git.sven.stormbind.net/?a=blobdiff_plain;f=src%2Fexport-latex.h;fp=src%2Fexport-latex.h;h=5e3fd141d4dbcdfbac3bd04283d8a0a2b07e0d9a;hb=d483bd8e6523c23c6f1d8908a2e0611c2bc9ff4f;hp=0000000000000000000000000000000000000000;hpb=7dfa3fe589d1722d49681f42cdb0bf1e6efb5223;p=sven%2Fvym.git diff --git a/src/export-latex.h b/src/export-latex.h new file mode 100644 index 0000000..5e3fd14 --- /dev/null +++ b/src/export-latex.h @@ -0,0 +1,16 @@ +#ifndef EXPORT_LATEX_H +#define EXPORT_LATEX_H + +#include "export-base.h" + +class ExportLaTeX : public ExportBase { + public: + ExportLaTeX(); + QString escapeLaTeX(const QString &s); + virtual void doExport(); + + private: + QHash esc; +}; + +#endif