mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
68b7ef25fb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8594 a592a061-630c-0410-9148-cb99ea01b6c8
30 lines
558 B
C++
30 lines
558 B
C++
// -*- 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ønnes
|
|
* \author José Matos
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef OUTPUT_LINUXDOC_H
|
|
#define OUTPUT_LINUXDOC_H
|
|
|
|
#include <iosfwd>
|
|
|
|
class Buffer;
|
|
class ParagraphList;
|
|
class OutputParams;
|
|
|
|
///
|
|
void linuxdocParagraphs(Buffer const & buf,
|
|
ParagraphList const & paragraphs,
|
|
std::ostream & os,
|
|
OutputParams const & runparams);
|
|
|
|
|
|
#endif
|