X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Foutput_plaintext.h;h=ebecc5ceba6f3317f2b26722306ab176eb711baa;hb=874ad18178ac387c407534fd18e33c116c753430;hp=16eb1414f1ff82ca9f9f7f36abce587e24b916b9;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/output_plaintext.h b/src/output_plaintext.h index 16eb1414f1..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,29 +12,35 @@ #ifndef OUTPUT_PLAINTEXT_H #define OUTPUT_PLAINTEXT_H -#include "support/docstream.h" +#include "support/strfwd.h" +#include "support/types.h" + +#include 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, odocstream &, OutputParams const &); +void writePlaintextFile(Buffer const & buf, odocstream &, OutputParams const &); /// -void asciiParagraph(Buffer const & buf, +void writePlaintextParagraph(Buffer const & buf, Paragraph const & paragraphs, odocstream & ofs, OutputParams const &, - bool & ref_printed); + bool & ref_printed, + size_t max_length = INT_MAX); } // namespace lyx