]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_factory.h
fix #1073
[lyx.git] / src / mathed / math_factory.h
index 56e0e916691b9dcc4f4112c69e8639c727451fb4..bcecc29d3b2a357ff0702fd6d5d9d73837a2a77d 100644 (file)
@@ -1,13 +1,18 @@
 #ifndef MATH_FACTORY_H
 #define MATH_FACTORY_H
 
+
 #include "LString.h"
-#include "math_atom.h"
 
-class MathInset;
-class latexkeys;
+class MathAtom;
+class MathArray;
 
 MathAtom createMathInset(string const &);
-MathAtom createMathInset(latexkeys const *);
+
+/** Fills ar with the contents of str.
+ *  str is created by the frontend dialog's and returned to the LyX core.
+ *  The function returns true if successful.
+ */
+bool createMathInset_fromDialogStr(string const &, MathArray &);
 
 #endif