X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Foutput_latex.h;h=185b737d2096d1cda88608e67c46a5d621ad723c;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=1bd15a03ea7d6f79a8997f447ef5c3bab1cc0e22;hpb=0d43ba149a41e8860dde316ccbd4336d6b0bbdfa;p=lyx.git diff --git a/src/output_latex.h b/src/output_latex.h index 1bd15a03ea..185b737d20 100644 --- a/src/output_latex.h +++ b/src/output_latex.h @@ -12,20 +12,27 @@ #ifndef OUTPUT_LATEX_H #define OUTPUT_LATEX_H -#include +#include "ParagraphList_fwd.h" + +#include "support/docstream.h" + + +namespace lyx { class Buffer; class OutputParams; -class ParagraphList; class TexRow; /// Just a wrapper for the method below, first creating the ofstream. void latexParagraphs(Buffer const & buf, ParagraphList const & paragraphs, - std::ostream & ofs, + odocstream & ofs, TexRow & texrow, OutputParams const &, std::string const & everypar = std::string()); + +} // namespace lyx + #endif