Consider the case where there is not any layout name.
[lyx.git] / src / output_latex.h
blob1bd15a03ea7d6f79a8997f447ef5c3bab1cc0e22
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.
7 * \author Lars Gullik Bjønnes
9 * Full author contact details are available in file CREDITS.
12 #ifndef OUTPUT_LATEX_H
13 #define OUTPUT_LATEX_H
15 #include <string>
17 class Buffer;
18 class OutputParams;
19 class ParagraphList;
20 class TexRow;
22 /// Just a wrapper for the method below, first creating the ofstream.
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());
31 #endif