]> git.lyx.org Git - lyx.git/blobdiff - src/output_plaintext.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / output_plaintext.h
index 871c2646449a1d5f558a67f98d63e69d20290cde..5e88d0e765fd95dcb459b02866f4ad093d840920 100644 (file)
 #ifndef OUTPUT_PLAINTEXT_H
 #define OUTPUT_PLAINTEXT_H
 
-#include <iosfwd>
-#include <string>
+#include "support/docstream.h"
+
+
+namespace lyx {
+
+namespace support { class FileName; }
 
 class Buffer;
 class OutputParams;
@@ -21,17 +25,19 @@ class Paragraph;
 
 
 ///
-void writeFileAscii(Buffer const & buf, std::string const &,
+void writePlaintextFile(Buffer const & buf, support::FileName const &,
        OutputParams const &);
 
 ///
-void writeFileAscii(Buffer const & buf, std::ostream &, OutputParams const &);
+void writePlaintextFile(Buffer const & buf, odocstream &, OutputParams const &);
 
 ///
-void asciiParagraph(Buffer const & buf,
+void writePlaintextParagraph(Buffer const & buf,
                    Paragraph const & paragraphs,
-                   std::ostream & ofs,
+                   odocstream & ofs,
                    OutputParams const &,
-                   bool noparbreak = false);
+                   bool & ref_printed);
+
+} // namespace lyx
 
 #endif