]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLine.h
Well, it turns out that we need a different return value for the xhtml
[lyx.git] / src / insets / InsetLine.h
index aa76cfd24e6c53b803435a01475d03ec656a6324..43b7e36cdef413b3d3048f748c398f08df6e83b8 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.
  */
@@ -20,38 +20,34 @@ namespace lyx {
 
 class InsetLine : public Inset {
 public:
-
+       ///
        InsetLine() {}
-
-       Inset::Code lyxCode() const { return Inset::LINE_CODE; }
-
-       bool metrics(MetricsInfo &, Dimension &) const;
-
+       ///
+       InsetCode lyxCode() const { return LINE_CODE; }
+       ///
+       void metrics(MetricsInfo &, Dimension &) const;
+       ///
        void draw(PainterInfo & pi, int x, int y) const;
-
-       int latex(Buffer const &, odocstream &,
-                 OutputParams const &) const;
-
-       int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
-
-       int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
-
-       void read(Buffer const &, Lexer & lex);
-
-       void write(Buffer const & buf, std::ostream & os) const;
+       ///
+       int latex(odocstream &, OutputParams const &) const;
+       ///
+       int plaintext(odocstream &, OutputParams const &) const;
+       ///
+       int docbook(odocstream &, OutputParams const &) const;
+       ///
+       docstring xhtml(odocstream &, 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;
 private:
-       virtual std::auto_ptr<Inset> doClone() const
-       {
-               return std::auto_ptr<Inset>(new InsetLine);
-       }
+       Inset * clone() const { return new InsetLine(*this); }
 };