]> git.lyx.org Git - features.git/blob - src/output_plaintext.h
e535430a9a52b85eb90d9f838d1c8696541749aa
[features.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 "ParagraphList_fwd.h"
16
17
18 class Buffer;
19 class OutputParams;
20
21 ///
22 void writeFileAscii(Buffer const & buf, std::string const &, OutputParams const &);
23 ///
24 void writeFileAscii(Buffer const & buf, std::ostream &, OutputParams const &);
25
26 ///
27 void asciiParagraph(Buffer const & buf,
28                     Paragraph const & paragraphs,
29                     std::ostream & ofs,
30                     OutputParams const &,
31                     bool noparbreak = false);
32
33 #endif