2004-06-03 13:08:50 +00:00
|
|
|
/**
|
|
|
|
* \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),
|
2005-09-09 11:04:53 +00:00
|
|
|
local_font(0), free_spacing(false), use_babel(false),
|
2004-11-02 11:25:20 +00:00
|
|
|
linelen(0), depth(0),
|
2006-01-09 21:00:24 +00:00
|
|
|
exportdata(new ExportData),
|
|
|
|
inComment(false)
|
2004-06-03 13:08:50 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
OutputParams::~OutputParams()
|
|
|
|
{}
|