]> git.lyx.org Git - lyx.git/blob - src/mathed/math_factory.h
Ensure all #warning statements are wrapped by #ifdef WITH_WARNINGS.
[lyx.git] / src / mathed / math_factory.h
1 // -*- C++ -*-
2 /**
3  * \file math_factory.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 class MathAtom;
18 class MathArray;
19
20
21 MathAtom createMathInset(std::string const &);
22
23 /** Fills ar with the contents of str.
24  *  str is created by the frontend dialog's and returned to the LyX core.
25  *  The function returns true if successful.
26  */
27 bool createMathInset_fromDialogStr(std::string const &, MathArray &);
28
29 #endif