X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Foutput_plaintext.h;h=16eb1414f1ff82ca9f9f7f36abce587e24b916b9;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=f4ad4f7768dfcceeb4db6df3d36dec0e5ae8f872;hpb=5d9e560f7102ce07641db32953a150f88c9429d3;p=lyx.git diff --git a/src/output_plaintext.h b/src/output_plaintext.h index f4ad4f7768..16eb1414f1 100644 --- a/src/output_plaintext.h +++ b/src/output_plaintext.h @@ -12,8 +12,10 @@ #ifndef OUTPUT_PLAINTEXT_H #define OUTPUT_PLAINTEXT_H -#include -#include +#include "support/docstream.h" + + +namespace lyx { class Buffer; class OutputParams; @@ -25,13 +27,15 @@ void writeFileAscii(Buffer const & buf, std::string 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 & ref_printed); +} // namespace lyx + #endif