]> git.lyx.org Git - lyx.git/blobdiff - src/output_plaintext.h
Fix for bug 4135
[lyx.git] / src / output_plaintext.h
index c997b9be2b4b6baaa3c67c6885b24e6dae23bd8b..5e88d0e765fd95dcb459b02866f4ad093d840920 100644 (file)
 
 #include "support/docstream.h"
 
+
+namespace lyx {
+
+namespace support { class FileName; }
+
 class Buffer;
 class OutputParams;
 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, lyx::odocstream &, OutputParams const &);
+void writePlaintextFile(Buffer const & buf, odocstream &, OutputParams const &);
 
 ///
-void asciiParagraph(Buffer const & buf,
+void writePlaintextParagraph(Buffer const & buf,
                    Paragraph const & paragraphs,
-                   lyx::odocstream & ofs,
+                   odocstream & ofs,
                    OutputParams const &,
                    bool & ref_printed);
 
+} // namespace lyx
+
 #endif