]> git.lyx.org Git - lyx.git/blob - src/OutputParams.cpp
start using FileName::exists()
[lyx.git] / src / OutputParams.cpp
1 /**
2  * \file OutputParams.cpp
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 namespace lyx {
18
19
20 OutputParams::OutputParams(Encoding const * enc)
21         : flavor(LATEX), nice(false), moving_arg(false),
22           local_font(0), encoding(enc), free_spacing(false), use_babel(false),
23           linelen(0), depth(0),
24           exportdata(new ExportData),
25           inComment(false),
26           inDeletedInset(0), changeOfDeletedInset(Change::UNCHANGED),
27           par_begin(0), par_end(0),
28           dryrun(false)
29 {}
30
31
32 OutputParams::~OutputParams()
33 {}
34
35
36 } // namespace lyx