X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Foutput_plaintext.h;h=c32a4a2c1988ce794e5e86490035a0d1b0a4cad1;hb=0011f47885e070cf36e92d3a2f11f29ce1d4fdf4;hp=871c2646449a1d5f558a67f98d63e69d20290cde;hpb=0d43ba149a41e8860dde316ccbd4336d6b0bbdfa;p=lyx.git diff --git a/src/output_plaintext.h b/src/output_plaintext.h index 871c264644..c32a4a2c19 100644 --- a/src/output_plaintext.h +++ b/src/output_plaintext.h @@ -12,8 +12,12 @@ #ifndef OUTPUT_PLAINTEXT_H #define OUTPUT_PLAINTEXT_H -#include -#include +#include "support/strfwd.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