]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLine.h
Pure HTML output for math macros.
[lyx.git] / src / insets / InsetLine.h
index c5435e1e377fe5515d53381248fae2a1cefb2f37..f9e289528c72079c9317f9435672152290265769 100644 (file)
@@ -20,27 +20,29 @@ namespace lyx {
 
 class InsetLine : public Inset {
 public:
-
-       InsetLine() {}
-
+       ///
+       InsetLine() : Inset(0) {}
+       ///
        InsetCode lyxCode() const { return LINE_CODE; }
-
+       ///
        void metrics(MetricsInfo &, Dimension &) const;
-
+       ///
        void draw(PainterInfo & pi, int x, int y) const;
-
+       ///
        int latex(odocstream &, OutputParams const &) const;
-
+       ///
        int plaintext(odocstream &, OutputParams const &) const;
-
+       ///
        int docbook(odocstream &, OutputParams const &) const;
-
+       ///
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       ///
        void read(Lexer & lex);
-
+       ///
        void write(std::ostream & os) const;
        /// We don't need \begin_inset and \end_inset
        bool directWrite() const { return true; }
-
+       ///
        DisplayType display() const { return AlignCenter; }
        ///
        void validate(LaTeXFeatures & features) const;