]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathExFunc.h
Remove hardcoded values
[lyx.git] / src / mathed / InsetMathExFunc.h
index 7a5b25310f62e51622226035249492ea4ae46b39..c3a43acfd1c0e0a605ab33a094316ae359701720 100644 (file)
@@ -15,8 +15,6 @@
 
 #include "InsetMathNest.h"
 
-#include <string>
-
 
 namespace lyx {
 
@@ -26,9 +24,9 @@ namespace lyx {
 class InsetMathExFunc : public InsetMathNest {
 public:
        ///
-       explicit InsetMathExFunc(docstring const & name);
+       InsetMathExFunc(Buffer * buf, docstring const & name);
        ///
-       InsetMathExFunc(docstring const & name, MathData const & ar);
+       InsetMathExFunc(Buffer * buf, docstring const & name, MathData const & ar);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -45,6 +43,8 @@ public:
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       ///
        void octave(OctaveStream &) const;
        ///
        InsetCode lyxCode() const { return MATH_EXFUNC_CODE; }