]> git.lyx.org Git - lyx.git/blob - src/outputparams.C
minimal effort implementation of:
[lyx.git] / src / outputparams.C
1 /**
2  * \file outputparams.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  *  \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "outputparams.h"
14 #include "exporter.h"
15
16
17 OutputParams::OutputParams()
18         : flavor(LATEX), nice(false), moving_arg(false),
19           local_font(0), free_spacing(false), use_babel(false),
20           linelen(0), depth(0),
21           exportdata(new ExportData),
22           inComment(false),
23           par_begin(0), par_end(0),
24           dryrun(false)
25 {}
26
27
28 OutputParams::~OutputParams()
29 {}