]> git.lyx.org Git - lyx.git/blob - src/output_docbook.h
Fixup e1be71da5: avoid duplication of layout
[lyx.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  * \author Thibaut Cuvelier
10  * \author Richard Heck
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef OUTPUT_DOCBOOK_H
16 #define OUTPUT_DOCBOOK_H
17
18 #include "LayoutEnums.h"
19
20 #include "support/docstream.h"
21 #include "support/strfwd.h"
22 #include "xml.h"
23
24 namespace lyx {
25
26 class Buffer;
27 class OutputParams;
28 class Text;
29
30 ///
31 std::string const fontToDocBookTag(xml::FontTypes type);
32 ///
33 xml::FontTag docbookStartFontTag(xml::FontTypes type);
34 ///
35 xml::EndFontTag docbookEndFontTag(xml::FontTypes type);
36
37 ///
38 void docbookParagraphs(Text const & text,
39                                Buffer const & buf,
40                        XMLStream & os,
41                                OutputParams const & runparams);
42
43 } // namespace lyx
44
45 #endif