]> git.lyx.org Git - lyx.git/blob - src/mathed/MathFactory.h
728d9a66e529420dcd2ef400c2517761190576ae
[lyx.git] / src / mathed / MathFactory.h
1 // -*- C++ -*-
2 /**
3  * \file MathFactory.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_FACTORY_H
13 #define MATH_FACTORY_H
14
15 #include <string>
16
17
18 namespace lyx {
19
20 class MathAtom;
21 class MathArray;
22
23
24 MathAtom createInsetMath(std::string const &);
25
26 /** Fills ar with the contents of str.
27  *  str is created by the frontend dialog's and returned to the LyX core.
28  *  The function returns true if successful.
29  */
30 bool createInsetMath_fromDialogStr(std::string const &, MathArray &);
31
32
33 } // namespace lyx
34
35 #endif