]> git.lyx.org Git - lyx.git/blobdiff - src/outputparams.C
Scons: update_po target, part one: language_l10n.pot
[lyx.git] / src / outputparams.C
index 8ce11581124f88602d7973fbf16984024a043951..9604f38f6dcd9f9b0cfed25beb70d4ca2e456891 100644 (file)
 #include "exporter.h"
 
 
-OutputParams::OutputParams()
+namespace lyx {
+
+
+OutputParams::OutputParams(Encoding const * enc)
        : flavor(LATEX), nice(false), moving_arg(false),
-         local_font(0), free_spacing(false), use_babel(false),
+         local_font(0), encoding(enc), free_spacing(false), use_babel(false),
          linelen(0), depth(0),
          exportdata(new ExportData),
-         inComment(false)
+         inComment(false),
+         par_begin(0), par_end(0),
+         dryrun(false)
 {}
 
 
 OutputParams::~OutputParams()
 {}
+
+
+} // namespace lyx