]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathComment.h
Assure correct spacing of colored items in mathed
[lyx.git] / src / mathed / InsetMathComment.h
index 2a5035d7bec7d3de79dda96f2992784f7958851b..10b244613f336795d2ad0cbf1548e4770e34c9d2 100644 (file)
@@ -23,9 +23,11 @@ class latexkeys;
 class InsetMathComment : public InsetMathNest {
 public:
        ///
-       InsetMathComment();
+       explicit InsetMathComment(Buffer * buf);
        ///
-       explicit InsetMathComment(docstring const &);
+       explicit InsetMathComment(MathData const & ar);
+       ///
+       InsetMathComment(Buffer * buf, docstring const &);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -40,13 +42,17 @@ public:
        ///
        void maple(MapleStream &) const;
        ///
-       void mathematica(MathematicaStream &) const;
+       void mathematica(MathematicaStream &) const {}
        ///
-       void octave(OctaveStream &) const;
+       void octave(OctaveStream &) const {}
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       ///
        void infoize(odocstream & os) const;
+       ///
+       InsetCode lyxCode() const { return MATH_COMMENT_CODE; }
 private:
        virtual Inset * clone() const;
 };