X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Foutput_plaintext.h;h=c32a4a2c1988ce794e5e86490035a0d1b0a4cad1;hb=4056f0ddb150d0e5d60bc5941d51e365eed0ac86;hp=e535430a9a52b85eb90d9f838d1c8696541749aa;hpb=cd424d78530c9e38502ee7f989ef5c426c97ad61;p=lyx.git diff --git a/src/output_plaintext.h b/src/output_plaintext.h index e535430a9a..c32a4a2c19 100644 --- a/src/output_plaintext.h +++ b/src/output_plaintext.h @@ -12,22 +12,32 @@ #ifndef OUTPUT_PLAINTEXT_H #define OUTPUT_PLAINTEXT_H -#include "ParagraphList_fwd.h" +#include "support/strfwd.h" +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); + +} // namespace lyx #endif