| 25 | #include <QDir> |
| 26 | |
| 27 | Engine::Engine(const QString& name, const QString& program, const QStringList & arguments, bool showPdf) |
| 28 | : _name(name), _program(program), _arguments(arguments), _showPdf(showPdf) |
| 29 | { |
| 30 | } |
| 31 | |
| 32 | Engine::Engine(const Engine& orig) |
| 33 | : _name(orig._name), _program(orig._program), _arguments(orig._arguments), _showPdf(orig._showPdf) |
nothing calls this directly
no outgoing calls
no test coverage detected