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