]> git.lyx.org Git - lyx.git/blobdiff - src/output_plaintext.h
Fix inline collapsable inset set focus crash
[lyx.git] / src / output_plaintext.h
index e535430a9a52b85eb90d9f838d1c8696541749aa..682a94794f98b700757ed8c896c971559c3ff4ce 100644 (file)
 #ifndef OUTPUT_PLAINTEXT_H
 #define OUTPUT_PLAINTEXT_H
 
-#include "ParagraphList_fwd.h"
+#include "support/docstream.h"
 
 
+namespace lyx {
+
+namespace support { class FileName; }
+
 class Buffer;
 class OutputParams;
+class Paragraph;
+
 
 ///
-void writeFileAscii(Buffer const & buf, std::string const &, OutputParams const &);
+void writeFileAscii(Buffer const & buf, support::FileName const &,
+       OutputParams const &);
+
 ///
-void writeFileAscii(Buffer const & buf, std::ostream &, OutputParams const &);
+void writeFileAscii(Buffer const & buf, odocstream &, OutputParams const &);
 
 ///
 void asciiParagraph(Buffer const & buf,
                    Paragraph const & paragraphs,
-                   std::ostream & ofs,
+                   odocstream & ofs,
                    OutputParams const &,
-                   bool noparbreak = false);
+                   bool & ref_printed);
+
+} // namespace lyx
 
 #endif