]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathFactory.h
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / MathFactory.h
index 728d9a66e529420dcd2ef400c2517761190576ae..89e17e9f8ce51d57a5774dfa5371fe5064ae9772 100644 (file)
 #ifndef MATH_FACTORY_H
 #define MATH_FACTORY_H
 
+#include "support/docstring.h"
 #include <string>
 
-
 namespace lyx {
 
 class MathAtom;
 class MathArray;
 
 
-MathAtom createInsetMath(std::string const &);
+MathAtom createInsetMath(docstring const &);
+MathAtom createInsetMath(char const * 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 createInsetMath_fromDialogStr(std::string const &, MathArray &);
+bool createInsetMath_fromDialogStr(docstring const &, MathArray &);
 
 
 } // namespace lyx