]> git.lyx.org Git - lyx.git/blob - src/mathed/math_factory.h
fix #1073
[lyx.git] / src / mathed / math_factory.h
1 #ifndef MATH_FACTORY_H
2 #define MATH_FACTORY_H
3
4
5 #include "LString.h"
6
7 class MathAtom;
8 class MathArray;
9
10 MathAtom createMathInset(string const &);
11
12 /** Fills ar with the contents of str.
13  *  str is created by the frontend dialog's and returned to the LyX core.
14  *  The function returns true if successful.
15  */
16 bool createMathInset_fromDialogStr(string const &, MathArray &);
17
18 #endif