]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_deliminset.h
further code uglification to make Jean-Marc's compiler happy
[lyx.git] / src / mathed / math_deliminset.h
index 712148bb8470bdafb2bdae77da145a022f7a02ba..23cf45e376b2d985afaece5e3d6999cadac89544 100644 (file)
@@ -3,6 +3,7 @@
 #define MATH_DELIMINSET_H
 
 #include "math_nestinset.h"
+#include "LString.h"
 
 #ifdef __GNUG__
 #pragma interface
 /** A delimiter
     \author Alejandro Aguilar Sierra
 */
+
 class MathDelimInset : public MathNestInset {
 public:
        ///
-       MathDelimInset(int, int);
+       MathDelimInset(string const &, string const &);
        ///
        MathInset * clone() const;
        ///
@@ -24,10 +26,13 @@ public:
        ///
        void metrics(MathStyles st) const;
 private:
+       ///
        int dw() const;
        ///
-       int left_;
+       string left_;
+       ///
+       string right_;
        ///
-       int right_;
+       static string latexName(string const & name);
 };
 #endif