X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathFactory.h;h=b6fdb5044a34aea6e3b2073194d76ca22b74f254;hb=d9082639080b9de993742bd352f92e5183058cf5;hp=2b9cbd0149c977fff79f64cc65480629792ec1e2;hpb=31059d1741933d95403e7f07ed033cae482f778b;p=lyx.git diff --git a/src/mathed/MathFactory.h b/src/mathed/MathFactory.h index 2b9cbd0149..b6fdb5044a 100644 --- a/src/mathed/MathFactory.h +++ b/src/mathed/MathFactory.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -12,8 +12,11 @@ #ifndef MATH_FACTORY_H #define MATH_FACTORY_H -#include "support/docstring.h" -#include +#include "MathParser.h" + +#include "support/strfwd.h" + +#include namespace lyx { @@ -21,8 +24,8 @@ class MathAtom; class MathData; -MathAtom createInsetMath(docstring const &); -MathAtom createInsetMath(char const * const); +MathAtom createInsetMath(docstring const &, Buffer * buf); +MathAtom createInsetMath(char const * const, Buffer * buf); /** Fills ar with the contents of str. * str is created by the frontend dialog's and returned to the LyX core. @@ -30,6 +33,8 @@ MathAtom createInsetMath(char const * const); */ bool createInsetMath_fromDialogStr(docstring const &, MathData &); +typedef std::map MathWordList; +MathWordList const & mathedWordList(); } // namespace lyx