2003-11-05 12:06:20 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file output_plaintext.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef OUTPUT_PLAINTEXT_H
|
|
|
|
|
#define OUTPUT_PLAINTEXT_H
|
|
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
|
#include "support/docstream.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
class Buffer;
|
|
|
|
|
class OutputParams;
|
2004-03-25 09:16:36 +00:00
|
|
|
|
class Paragraph;
|
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
|
|
///
|
2004-03-25 09:16:36 +00:00
|
|
|
|
void writeFileAscii(Buffer const & buf, std::string const &,
|
|
|
|
|
OutputParams const &);
|
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
void writeFileAscii(Buffer const & buf, odocstream &, OutputParams const &);
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void asciiParagraph(Buffer const & buf,
|
|
|
|
|
Paragraph const & paragraphs,
|
2006-10-21 00:16:43 +00:00
|
|
|
|
odocstream & ofs,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &,
|
2005-07-15 19:10:25 +00:00
|
|
|
|
bool & ref_printed);
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
#endif
|