Another minor change, but this should almost get us to the point that we
[lyx.git] / src / output_plaintext.h
blobb047c9cf262ed64c3a26e5403008ad3d4bb70e24
1 // -*- C++ -*-
2 /**
3 * \file output_plaintext.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Lars Gullik Bjønnes
9 * Full author contact details are available in file CREDITS.
12 #ifndef OUTPUT_PLAINTEXT_H
13 #define OUTPUT_PLAINTEXT_H
15 #include "support/strfwd.h"
18 namespace lyx {
20 namespace support { class FileName; }
22 class Buffer;
23 class OutputParams;
24 class Paragraph;
27 ///
28 void writePlaintextFile(Buffer const & buf, support::FileName const &,
29 OutputParams const &);
31 ///
32 void writePlaintextFile(Buffer const & buf, odocstream &, OutputParams const &);
34 ///
35 void writePlaintextParagraph(Buffer const & buf,
36 Paragraph const & paragraphs,
37 odocstream & ofs,
38 OutputParams const &,
39 bool & ref_printed);
41 } // namespace lyx
43 #endif