]> git.lyx.org Git - features.git/blob - src/output_docbook.h
Rename XHTMLStream to XMLStream, move it to another file, and prepare for DocBook...
[features.git] / src / output_docbook.h
1 // -*- C++ -*-
2 /**
3  * \file output_docbook.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author José Matos
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef OUTPUT_DOCBOOK_H
14 #define OUTPUT_DOCBOOK_H
15
16 #include "support/strfwd.h"
17 #include "xml.h"
18
19 namespace lyx {
20
21 std::string const fontToDocBookTag(xml::FontTypes type);
22
23 class Buffer;
24 class OutputParams;
25 class Text;
26
27 ///
28 void docbookParagraphs(Text const & text,
29                        Buffer const & buf,
30                        odocstream & os,
31                        OutputParams const & runparams);
32
33 } // namespace lyx
34
35 #endif