X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Foutput_plaintext.h;h=5e88d0e765fd95dcb459b02866f4ad093d840920;hb=4080450341a4ed1cec0e4f72d9c917d2c7378157;hp=c997b9be2b4b6baaa3c67c6885b24e6dae23bd8b;hpb=34b7650cbbe6a9ed2de812e75771451b8c8fe983;p=lyx.git diff --git a/src/output_plaintext.h b/src/output_plaintext.h index c997b9be2b..5e88d0e765 100644 --- a/src/output_plaintext.h +++ b/src/output_plaintext.h @@ -14,23 +14,30 @@ #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