]> git.lyx.org Git - lyx.git/blob - src/output_linuxdoc.h
a new biblio::asValidLatexString helper function.
[lyx.git] / src / output_linuxdoc.h
1 // -*- C++ -*-
2 /**
3  * \file output_linuxdoc.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_LINUXDOC_H
14 #define OUTPUT_LINUXDOC_H
15
16 #include <iosfwd>
17
18 class Buffer;
19 class ParagraphList;
20 class OutputParams;
21
22 ///
23 void linuxdocParagraphs(Buffer const & buf,
24                         ParagraphList const & paragraphs,
25                         std::ostream & os,
26                         OutputParams const & runparams);
27
28
29 #endif