lyx_mirror/src/mathed/math_factory.h
Angus Leeming 3910647ab4 Rearrange Dialog communication code to make it easier to handle similar stuff
for other insets.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6338 a592a061-630c-0410-9148-cb99ea01b6c8
2003-03-04 16:39:13 +00:00

19 lines
382 B
C++

#ifndef MATH_FACTORY_H
#define MATH_FACTORY_H
#include "LString.h"
class MathAtom;
class MathArray;
MathAtom createMathInset(string 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