]> git.lyx.org Git - lyx.git/blob - src/output_latex.h
185b737d2096d1cda88608e67c46a5d621ad723c
[lyx.git] / src / output_latex.h
1 // -*- C++ -*-
2 /**
3  * \file output_latex.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  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef OUTPUT_LATEX_H
13 #define OUTPUT_LATEX_H
14
15 #include "ParagraphList_fwd.h"
16
17 #include "support/docstream.h"
18
19
20 namespace lyx {
21
22 class Buffer;
23 class OutputParams;
24 class TexRow;
25
26 /// Just a wrapper for the method below, first creating the ofstream.
27
28 void latexParagraphs(Buffer const & buf,
29                      ParagraphList const & paragraphs,
30                      odocstream & ofs,
31                      TexRow & texrow,
32                      OutputParams const &,
33                      std::string const & everypar = std::string());
34
35
36 } // namespace lyx
37
38 #endif