]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathParser.h
InsetMathHull.cpp: whitespace
[lyx.git] / src / mathed / MathParser.h
index bf174f1643507c4b61e0c38065c4599bb01f76b3..de97e1033db52f9596cd738738edc6d15aa06013 100644 (file)
 #include "support/types.h"
 #include "support/docstring.h"
 
-#include <string>
-#include <vector>
 
 namespace lyx {
 
-
 class MathAtom;
-class MathArray;
+class MathData;
 class InsetMathGrid;
 class Lexer;
 
@@ -69,10 +66,10 @@ bool mathed_parse_normal(MathAtom &, Lexer &);
 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();