]> git.lyx.org Git - lyx.git/blob - src/output_docbook.h
dd6090fe2a93ad5a5b5e2eec3dd07ead52f5e5d6
[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  *
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 "ParagraphList_fwd.h"
17 #include "support/docstream.h"
18
19 #include <iosfwd>
20
21 class Buffer;
22 class OutputParams;
23
24 ///
25 void docbookParagraphs(ParagraphList const & subset,
26                        Buffer const & buf,
27                        lyx::odocstream & os,
28                        OutputParams const & runparams);
29 #endif