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.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
|
|
|
* \author José Matos
|
2003-11-05 12:06:20 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OUTPUT_DOCBOOK_H
|
|
|
|
#define OUTPUT_DOCBOOK_H
|
|
|
|
|
2007-11-01 22:17:22 +00:00
|
|
|
#include "support/strfwd.h"
|
2006-03-23 20:11:06 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
class Buffer;
|
|
|
|
class OutputParams;
|
2009-08-09 18:35:39 +00:00
|
|
|
class Text;
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
///
|
2009-08-09 18:35:39 +00:00
|
|
|
void docbookParagraphs(Text const & text,
|
2004-10-24 00:02:39 +00:00
|
|
|
Buffer const & buf,
|
2006-10-21 00:16:43 +00:00
|
|
|
odocstream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const & runparams);
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
#endif
|