X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Foutput_plaintext.h;h=ebecc5ceba6f3317f2b26722306ab176eb711baa;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=f4ad4f7768dfcceeb4db6df3d36dec0e5ae8f872;hpb=5d9e560f7102ce07641db32953a150f88c9429d3;p=lyx.git diff --git a/src/output_plaintext.h b/src/output_plaintext.h index f4ad4f7768..ebecc5ceba 100644 --- a/src/output_plaintext.h +++ b/src/output_plaintext.h @@ -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. */ @@ -12,8 +12,15 @@ #ifndef OUTPUT_PLAINTEXT_H #define OUTPUT_PLAINTEXT_H -#include -#include +#include "support/strfwd.h" +#include "support/types.h" + +#include + + +namespace lyx { + +namespace support { class FileName; } class Buffer; class OutputParams; @@ -21,17 +28,20 @@ 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 & ref_printed); + bool & ref_printed, + size_t max_length = INT_MAX); + +} // namespace lyx #endif