]> 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 e9a7a01b08ba6226ae95d4a012ad6eb1e0f4e5b2..23cf45e376b2d985afaece5e3d6999cadac89544 100644 (file)
     \author Alejandro Aguilar Sierra
 */
 
-class latexkeys;
-
 class MathDelimInset : public MathNestInset {
 public:
        ///
-       MathDelimInset(latexkeys const *, latexkeys const *);
-
-#warning Remove this ass soon the Math panel patch is applied
-       ///
-       MathDelimInset(int, int);
-
+       MathDelimInset(string const &, string const &);
        ///
        MathInset * clone() const;
        ///
@@ -33,13 +26,13 @@ public:
        ///
        void metrics(MathStyles st) const;
 private:
-       ///
-       static string latexName(latexkeys const *);
        ///
        int dw() const;
        ///
-       latexkeys const * left_;
+       string left_;
+       ///
+       string right_;
        ///
-       latexkeys const * right_;
+       static string latexName(string const & name);
 };
 #endif