X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathParser.h;h=5be3b10275ee3e7816858141d4342e735898c6c5;hb=1007714d2ec380d935d59092013ea88373bfb1df;hp=2fb712fa1124aecc43231c9c96b6ac56db70132e;hpb=1ca55d1c8f1bc16d80db26d287ecf6f1a8e51aee;p=lyx.git diff --git a/src/mathed/MathParser.h b/src/mathed/MathParser.h index 2fb712fa11..5be3b10275 100644 --- a/src/mathed/MathParser.h +++ b/src/mathed/MathParser.h @@ -23,9 +23,9 @@ namespace lyx { class MathAtom; -class MathArray; +class MathData; class InsetMathGrid; -class LyXLex; +class Lexer; /// @@ -64,15 +64,15 @@ latexkeys const * in_word_set(docstring const & str); /// parse formula from a string bool mathed_parse_normal(MathAtom &, docstring const &); /// ... the LyX lexxer -bool mathed_parse_normal(MathAtom &, LyXLex &); +bool mathed_parse_normal(MathAtom &, Lexer &); /// parse formula from a string into a grid void mathed_parse_normal(InsetMathGrid &, docstring const &); /// parse a single cell from a string -void mathed_parse_cell(MathArray & ar, docstring const &); +void mathed_parse_cell(MathData & ar, docstring const &); /// parse a single cell from a stream. Only use this for reading from .lyx /// file format, for the reason see Parser::tokenize(std::istream &). -void mathed_parse_cell(MathArray & ar, std::istream &); +void mathed_parse_cell(MathData & ar, std::istream &); void initParser();