mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-15 23:49:37 +00:00
48 lines
909 B
C++
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
|