Another minor change, but this should almost get us to the point that we
[lyx.git] / src / output_docbook.h
blob46e495f0057afb8f93c1dca04d55bf6b7fdacc51
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.
7 * \author Lars Gullik Bjønnes
8 * \author José Matos
10 * Full author contact details are available in file CREDITS.
13 #ifndef OUTPUT_DOCBOOK_H
14 #define OUTPUT_DOCBOOK_H
16 #include "support/strfwd.h"
18 namespace lyx {
20 class Buffer;
21 class OutputParams;
22 class Text;
24 ///
25 void docbookParagraphs(Text const & text,
26 Buffer const & buf,
27 odocstream & os,
28 OutputParams const & runparams);
30 } // namespace lyx
32 #endif