]> git.lyx.org Git - lyx.git/blob - src/output_plaintext.h
fix arabtex-related problems (bug 1225 and bug 1404)
[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 <iosfwd>
16 #include <string>
17
18 class Buffer;
19 class OutputParams;
20 class Paragraph;
21
22
23 ///
24 void writeFileAscii(Buffer const & buf, std::string const &,
25         OutputParams const &);
26
27 ///
28 void writeFileAscii(Buffer const & buf, std::ostream &, OutputParams const &);
29
30 ///
31 void asciiParagraph(Buffer const & buf,
32                     Paragraph const & paragraphs,
33                     std::ostream & ofs,
34                     OutputParams const &,
35                     bool noparbreak = false);
36
37 #endif