]> git.lyx.org Git - lyx.git/blob - src/output_latex.h
1bd15a03ea7d6f79a8997f447ef5c3bab1cc0e22
[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 <string>
16
17 class Buffer;
18 class OutputParams;
19 class ParagraphList;
20 class TexRow;
21
22 /// Just a wrapper for the method below, first creating the ofstream.
23
24 void latexParagraphs(Buffer const & buf,
25                      ParagraphList const & paragraphs,
26                      std::ostream & ofs,
27                      TexRow & texrow,
28                      OutputParams const &,
29                      std::string const & everypar = std::string());
30
31 #endif