mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
1d57338353
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10718 a592a061-630c-0410-9148-cb99ea01b6c8
28 lines
554 B
C
28 lines
554 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),
|
|
local_font(0), free_spacing(false), use_babel(false),
|
|
linelen(0), depth(0),
|
|
exportdata(new ExportData),
|
|
inComment(false)
|
|
{}
|
|
|
|
|
|
OutputParams::~OutputParams()
|
|
{}
|