2003-11-05 12:06:20 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file output_docbook.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_DOCBOOK_H
|
|
|
|
|
#define OUTPUT_DOCBOOK_H
|
|
|
|
|
|
2003-11-05 15:29:49 +00:00
|
|
|
|
#include <iosfwd>
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
|
|
class Buffer;
|
|
|
|
|
class OutputParams;
|
2004-03-25 09:16:36 +00:00
|
|
|
|
class ParagraphList;
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
|
|
///
|
2004-10-24 00:02:39 +00:00
|
|
|
|
void docbookParagraphs(ParagraphList const & subset,
|
|
|
|
|
Buffer const & buf,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
std::ostream & os,
|
|
|
|
|
OutputParams const & runparams);
|
|
|
|
|
#endif
|