]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSqrt.h
Fix #10871 compiler warnings.
[lyx.git] / src / mathed / InsetMathSqrt.h
index 7db7ff641d89888942d2e01ca053a056718ecb53..d2aab3282b027c2665b6baf34fffa098c178f3a3 100644 (file)
@@ -5,7 +5,7 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Alejandro Aguilar Sierra
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -23,7 +23,7 @@ namespace lyx {
 class InsetMathSqrt : public InsetMathNest {
 public:
        ///
-       InsetMathSqrt();
+       InsetMathSqrt(Buffer * buf);
        ///
        void draw(PainterInfo &, int x, int y) const;
        ///
@@ -45,6 +45,13 @@ public:
        void octave(OctaveStream &) const;
        ///
        void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
+       InsetCode lyxCode() const { return MATH_SQRT_CODE; }
+       ///
+       void validate(LaTeXFeatures &) const;
+
 private:
        virtual Inset * clone() const;
 };