X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Foutput_docbook.h;h=4dcc853df28baa340f66e18841c0809fe5cf13ce;hb=af5257b6c3b24c00b18c601b77033cf7e60ce211;hp=819c2035e4b04f6d800fc1ee33175b5c7144282f;hpb=a6b07608d8e9de24383d3ebaec20b6b265ed9314;p=lyx.git diff --git a/src/output_docbook.h b/src/output_docbook.h index 819c2035e4..4dcc853df2 100644 --- a/src/output_docbook.h +++ b/src/output_docbook.h @@ -6,6 +6,8 @@ * * \author Lars Gullik Bjønnes * \author José Matos + * \author Thibaut Cuvelier + * \author Richard Heck * * Full author contact details are available in file CREDITS. */ @@ -13,22 +15,30 @@ #ifndef OUTPUT_DOCBOOK_H #define OUTPUT_DOCBOOK_H +#include "LayoutEnums.h" + +#include "support/docstream.h" #include "support/strfwd.h" #include "xml.h" namespace lyx { -std::string const fontToDocBookTag(xml::FontTypes type); - class Buffer; class OutputParams; class Text; +/// +std::string const fontToDocBookTag(xml::FontTypes type); +/// +xml::FontTag docbookStartFontTag(xml::FontTypes type); +/// +xml::EndFontTag docbookEndFontTag(xml::FontTypes type); + /// void docbookParagraphs(Text const & text, - Buffer const & buf, - odocstream & os, - OutputParams const & runparams); + Buffer const & buf, + XMLStream & os, + OutputParams const & runparams); } // namespace lyx