File indexing completed on 2024-04-28 03:51:16

0001 /*.
0002     SPDX-FileCopyrightText: 2007 Vladimir Kuznetsov <ks.vladimir@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef STEP_LATEXFORMULA_H
0008 #define STEP_LATEXFORMULA_H
0009 
0010 #include <QString>
0011 #include <QByteArray>
0012 
0013 class LatexFormula
0014 {
0015 public:
0016     static bool isLatexInstalled();
0017     static bool compileFormula(const QString& formula, QByteArray* result, QString* error);
0018 
0019 protected:
0020     LatexFormula() {}
0021 };
0022 
0023 #endif
0024