mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
d194cfffa5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8951 a592a061-630c-0410-9148-cb99ea01b6c8
27 lines
540 B
C
27 lines
540 B
C
/**
|
|
* \file outputparams.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "outputparams.h"
|
|
#include "exporter.h"
|
|
|
|
|
|
OutputParams::OutputParams()
|
|
: flavor(LATEX), nice(false), moving_arg(false),
|
|
free_spacing(false), use_babel(false),
|
|
mixed_content(false), linelen(0), depth(0),
|
|
exportdata(new ExportData)
|
|
{}
|
|
|
|
|
|
OutputParams::~OutputParams()
|
|
{}
|