]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_funcliminset.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_funcliminset.h
index 70f0e992b8729dc1258dd9a2bc2753658645e6dc..b54a335d1d299fa4a5335431c0aabfb110e4d6d0 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,6 +26,8 @@ public:
 
 private:
        ///
-       latexkeys const * sym_;
+       string const name_;
+       ///
+       mutable LyXFont font_;
 };
 #endif