]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_charinset.h
prepare hanling of chars the nee a backslash when written...
[lyx.git] / src / mathed / math_charinset.h
index 9925d0e350689cc6cfae48a7098512795154729c..1822ed0e9e088ce06e9174b15589f4a77f02d017 100644 (file)
@@ -19,6 +19,8 @@ public:
        ///
        MathCharInset(char c, MathTextCodes t);
        ///
+       MathCharInset(char c, MathTextCodes t, bool needbs);
+       ///
        MathInset * clone() const;
        ///
        MathTextCodes nativeCode(char c) const;
@@ -56,7 +58,9 @@ public:
 private:
        /// the character
        char char_;
-       /// 
+       /// the font to be used on screen
        MathTextCodes code_;
+       /// do wee need a backslash when writing LaTeX?
+       bool needbs_;
 };
 #endif