2 * \file PrinterParams.cpp
3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
8 * Full author contact details are available in file CREDITS.
13 #include "PrinterParams.h"
17 #include "support/lassert.h"
18 #include "support/lstrings.h"
23 PrinterParams::PrinterParams()
26 printer_name
= lyxrc
.printer
;
27 file_name
= std::string();
34 sorted_copies
= false;
35 reverse_order
= false;
41 void PrinterParams::testInvariant() const
45 // We can't do this test, because no default printer
47 // LASSERT(!printer_name.empty(), /**/);
50 LASSERT(!file_name
.empty(), /**/);