]> git.lyx.org Git - lyx.git/blob - src/mathed/MathFactory.h
Rename files in src/mathed and src/graphics from .C to .cpp, step 2
[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 "support/docstring.h"
16 #include <string>
17
18 namespace lyx {
19
20 class MathAtom;
21 class MathArray;
22
23
24 MathAtom createInsetMath(docstring const &);
25 MathAtom createInsetMath(char const * const);
26
27 /** Fills ar with the contents of str.
28  *  str is created by the frontend dialog's and returned to the LyX core.
29  *  The function returns true if successful.
30  */
31 bool createInsetMath_fromDialogStr(docstring const &, MathArray &);
32
33
34 } // namespace lyx
35
36 #endif