lyx_mirror/src/output_plaintext.h
2020-11-01 22:23:44 +02:00

48 lines
909 B
C++

// -*- 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ønnes
*
* Full author contact details are available in file CREDITS.
*/
#ifndef OUTPUT_PLAINTEXT_H
#define OUTPUT_PLAINTEXT_H
#include "support/strfwd.h"
#include "support/types.h"
#include <climits>
namespace lyx {
namespace support { class FileName; }
class Buffer;
class OutputParams;
class Paragraph;
///
void writePlaintextFile(Buffer const & buf, support::FileName const &,
OutputParams const &);
///
void writePlaintextFile(Buffer const & buf, odocstream &, OutputParams const &);
///
void writePlaintextParagraph(Buffer const & buf,
Paragraph const & par,
odocstream & ofs,
OutputParams const &,
bool & ref_printed,
size_t max_length = INT_MAX);
} // namespace lyx
#endif