]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_support.h
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_support.h
index b6a275dcb92ff94038049c32ffde35ea44058a45..9ecf7d8d05be52fd5ddd9b8e42cd549621c57070 100644 (file)
@@ -3,12 +3,12 @@
 #ifndef MATH_SUPPORT_H
 #define MATH_SUPPORT_H
 
-
 #include "LString.h"
 
 class PainterInfo;
 class LyXFont;
 class Dimension;
+class MathArray;
 
 void mathed_char_dim(LyXFont const &, unsigned char c, Dimension & dim);
 int mathed_char_width(LyXFont const &, unsigned char c);
@@ -33,4 +33,9 @@ void augmentFont(LyXFont & f, string const & cmd);
 
 bool isFontName(string const & name);
 
+// converts single cell to string
+string asString(MathArray const & ar);
+// converts string to single cell
+void asArray(string const & str, MathArray & ar);
+
 #endif