]> git.lyx.org Git - lyx.git/blob - src/output_plaintext.h
Changed a '1.4.4' to '1.4.5'
[lyx.git] / src / output_plaintext.h
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.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef OUTPUT_PLAINTEXT_H
13 #define OUTPUT_PLAINTEXT_H
14
15 #include "support/docstream.h"
16
17
18 namespace lyx {
19
20 namespace support { class FileName; }
21
22 class Buffer;
23 class OutputParams;
24 class Paragraph;
25
26
27 ///
28 void writePlaintextFile(Buffer const & buf, support::FileName const &,
29         OutputParams const &);
30
31 ///
32 void writePlaintextFile(Buffer const & buf, odocstream &, OutputParams const &);
33
34 ///
35 void writePlaintextParagraph(Buffer const & buf,
36                     Paragraph const & paragraphs,
37                     odocstream & ofs,
38                     OutputParams const &,
39                     bool & ref_printed);
40
41 } // namespace lyx
42
43 #endif