]> git.lyx.org Git - lyx.git/blobdiff - src/output_plaintext.h
Account for old versions of Pygments
[lyx.git] / src / output_plaintext.h
index e535430a9a52b85eb90d9f838d1c8696541749aa..ebecc5ceba6f3317f2b26722306ab176eb711baa 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
 #ifndef OUTPUT_PLAINTEXT_H
 #define OUTPUT_PLAINTEXT_H
 
-#include "ParagraphList_fwd.h"
+#include "support/strfwd.h"
+#include "support/types.h"
 
+#include <climits>
+
+
+namespace lyx {
+
+namespace support { class FileName; }
 
 class Buffer;
 class OutputParams;
+class Paragraph;
+
 
 ///
-void writeFileAscii(Buffer const & buf, std::string const &, OutputParams 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,
+                   size_t max_length = INT_MAX);
+
+} // namespace lyx
 
 #endif