]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_funcliminset.h
whichFont down to 5.3%
[lyx.git] / src / mathed / math_funcliminset.h
index 0d4e8dcc8517d996754e3448812cdd20c8c367b6..e36f4172389096cdc75a54b2fdc35b03d2e21e2d 100644 (file)
@@ -4,21 +4,19 @@
 
 #include "math_diminset.h"
 
-struct latexkeys;
-
 // "normal" symbols that don't take limits and don't grow in displayed
 // formulae
 
 class MathFuncLimInset : public MathDimInset {
 public:
        ///
-       explicit MathFuncLimInset(latexkeys const *);
+       explicit MathFuncLimInset(string const & name);
        ///
        MathInset * clone() const;
        ///
-       void write(MathWriteInfo & os) const;
+       void write(WriteStream & os) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void normalize(NormalStream &) const;
        ///
        void metrics(MathMetricsInfo const & st) const;
        ///
@@ -28,7 +26,7 @@ public:
 
 private:
        ///
-       latexkeys const * sym_;
+       string const name_;
        ///
        mutable MathMetricsInfo mi_;
 };