]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_parser.h
fix #1073
[lyx.git] / src / mathed / math_parser.h
index ffd966549c7bdfc87687a7ff901367e7a2e6c185..4aa2146705290bd3e785b7c13f6e2b3d0c2549cb 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-/*
+/**
  *  File:        math_parser.h
  *  Purpose:     Declaration of parsing utilities for mathed
  *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
 #ifndef MATH_PARSER_H
 #define MATH_PARSER_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "LString.h"
-#include "math_defs.h"
 
 class MathAtom;
 class MathArray;
+class MathGridInset;
 class LyXLex;
 
 
@@ -55,13 +52,8 @@ bool mathed_parse_normal(MathAtom &, string const &);
 bool mathed_parse_normal(MathAtom &, std::istream &);
 /// ... the LyX lexxer
 bool mathed_parse_normal(MathAtom &, LyXLex &);
-
-/// parse a macro definition from a string, enter it into the macro table
-bool mathed_parse_macro(string &, string const &);
-/// ... a stream
-bool mathed_parse_macro(string &, std::istream &);
 /// ... the LyX lexxer
-bool mathed_parse_macro(string &, LyXLex &);
+void mathed_parse_normal(MathGridInset &, string const &);
 
 /// parse a single cell from a string
 void mathed_parse_cell(MathArray & ar, string const &);