]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDelim.h
Add \makeat switches to babel settings if necessary.
[lyx.git] / src / mathed / InsetMathDelim.h
index 3dbb39da00f0b3903f539d15398cfd6cefa118fa..cbea8ec01c10552af748430f6c6c7ae4e92628a7 100644 (file)
@@ -24,9 +24,10 @@ namespace lyx {
 class InsetMathDelim : public InsetMathNest {
 public:
        ///
-       InsetMathDelim(docstring const & left, docstring const & right);
+       InsetMathDelim(Buffer * buf, docstring const & left, docstring const & right);
        ///
-       InsetMathDelim(docstring const & left, docstring const & right, MathData const &);
+       InsetMathDelim(Buffer * buf, docstring const & left, docstring const & right,
+               MathData const &);
        ///
        InsetMathDelim * asDelimInset() { return this; }
        ///
@@ -57,8 +58,12 @@ public:
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       ///
        void octave(OctaveStream &) const;
        ///
+       InsetCode lyxCode() const { return MATH_DELIM_CODE; }
+       ///
        docstring left_;
        ///
        docstring right_;