]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBrace.h
Remove obsolete (and false) comment.
[lyx.git] / src / mathed / InsetMathBrace.h
index 6a90397e6a4c133c7ca33c088289315d98940d0a..4a9efa716a48b4fa06457e83127f77fbfa092829 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -22,15 +22,13 @@ namespace lyx {
 class InsetMathBrace : public InsetMathNest {
 public:
        ///
-       InsetMathBrace();
+       explicit InsetMathBrace(Buffer * buf);
        ///
-       InsetMathBrace(MathData const & ar);
+       explicit InsetMathBrace(MathData const & ar);
        /// identifies brace insets
        InsetMathBrace * asBraceInset() { return this; }
        /// identifies brace insets
        InsetMathBrace const * asBraceInset() const { return this; }
-       /// we write extra braces in any case...
-       bool extraBraces() const { return true; }
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -48,7 +46,11 @@ public:
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       ///
        void infoize(odocstream & os) const;
+       ///
+       InsetCode lyxCode() const { return MATH_BRACE_CODE; }
 private:
        virtual Inset * clone() const;
 };