lyx_mirror/src/output_docbook.h
José Matox eb3d6435d1 Reorganized docbook export code and fixed several bugs in the process.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9114 a592a061-630c-0410-9148-cb99ea01b6c8
2004-10-24 00:02:39 +00:00

28 lines
566 B
C++

// -*- 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ønnes
* \author José Matos
*
* Full author contact details are available in file CREDITS.
*/
#ifndef OUTPUT_DOCBOOK_H
#define OUTPUT_DOCBOOK_H
#include <iosfwd>
class Buffer;
class OutputParams;
class ParagraphList;
///
void docbookParagraphs(ParagraphList const & subset,
Buffer const & buf,
std::ostream & os,
OutputParams const & runparams);
#endif