2003-11-05 12:06:20 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file output_linuxdoc.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
|
|
|
|
|
* \author Jos<EFBFBD> Matos
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef OUTPUT_LINUXDOC_H
|
|
|
|
|
#define OUTPUT_LINUXDOC_H
|
|
|
|
|
|
2003-11-05 15:29:49 +00:00
|
|
|
|
#include <iosfwd>
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
|
|
class Buffer;
|
2004-03-25 09:16:36 +00:00
|
|
|
|
class ParagraphList;
|
2003-11-05 12:06:20 +00:00
|
|
|
|
class OutputParams;
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void linuxdocParagraphs(Buffer const & buf,
|
|
|
|
|
ParagraphList const & paragraphs,
|
|
|
|
|
std::ostream & os,
|
|
|
|
|
OutputParams const & runparams);
|
2004-04-03 08:37:12 +00:00
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
|
|
#endif
|