2003-11-05 12:06:20 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file output_latex.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
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef OUTPUT_LATEX_H
|
|
|
|
|
#define OUTPUT_LATEX_H
|
|
|
|
|
|
2006-03-23 20:11:06 +00:00
|
|
|
|
#include "ParagraphList_fwd.h"
|
|
|
|
|
|
2006-10-19 16:51:30 +00:00
|
|
|
|
#include "support/docstream.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
class Buffer;
|
|
|
|
|
class OutputParams;
|
|
|
|
|
class TexRow;
|
|
|
|
|
|
|
|
|
|
/// Just a wrapper for the method below, first creating the ofstream.
|
|
|
|
|
|
|
|
|
|
void latexParagraphs(Buffer const & buf,
|
|
|
|
|
ParagraphList const & paragraphs,
|
2006-10-21 00:16:43 +00:00
|
|
|
|
odocstream & ofs,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
TexRow & texrow,
|
|
|
|
|
OutputParams const &,
|
|
|
|
|
std::string const & everypar = std::string());
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
#endif
|