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
|
|
|
|
|
|
|
|
|
|
#include "ParagraphList_fwd.h"
|
|
|
|
|
|
2003-11-05 15:29:49 +00:00
|
|
|
|
#include <iosfwd>
|
|
|
|
|
#include <string>
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
|
|
class Buffer;
|
|
|
|
|
class OutputParams;
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void writeFileAscii(Buffer const & buf, std::string const &, OutputParams const &);
|
|
|
|
|
///
|
|
|
|
|
void writeFileAscii(Buffer const & buf, std::ostream &, OutputParams const &);
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void asciiParagraph(Buffer const & buf,
|
|
|
|
|
Paragraph const & paragraphs,
|
|
|
|
|
std::ostream & ofs,
|
|
|
|
|
OutputParams const &,
|
|
|
|
|
bool noparbreak = false);
|
|
|
|
|
|
|
|
|
|
#endif
|