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