mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
30 lines
552 B
C
30 lines
552 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<EFBFBD>nnes
|
|||
|
* \author Jos<EFBFBD> Matos
|
|||
|
*
|
|||
|
* Full author contact details are available in file CREDITS.
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef OUTPUT_LINUXDOC_H
|
|||
|
#define OUTPUT_LINUXDOC_H
|
|||
|
|
|||
|
#include "ParagraphList_fwd.h"
|
|||
|
|
|||
|
|
|||
|
class Buffer;
|
|||
|
class OutputParams;
|
|||
|
|
|||
|
///
|
|||
|
void linuxdocParagraphs(Buffer const & buf,
|
|||
|
ParagraphList const & paragraphs,
|
|||
|
std::ostream & os,
|
|||
|
OutputParams const & runparams);
|
|||
|
|
|||
|
|
|||
|
#endif
|