lyx_mirror/src/output_plaintext.h

34 lines
726 B
C
Raw Normal View History

// -*- 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"
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