]> git.lyx.org Git - lyx.git/blobdiff - src/output_latex.h
hopefully fix tex2lyx linking.
[lyx.git] / src / output_latex.h
index 1bd15a03ea7d6f79a8997f447ef5c3bab1cc0e22..185b737d2096d1cda88608e67c46a5d621ad723c 100644 (file)
 #ifndef OUTPUT_LATEX_H
 #define OUTPUT_LATEX_H
 
-#include <string>
+#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