MCPcopy Create free account
hub / github.com/TeXworks/texworks / Engine

Method Engine

src/Engine.cpp:27–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25#include <QDir>
26
27Engine::Engine(const QString& name, const QString& program, const QStringList & arguments, bool showPdf)
28 : _name(name), _program(program), _arguments(arguments), _showPdf(showPdf)
29{
30}
31
32Engine::Engine(const Engine& orig)
33 : _name(orig._name), _program(orig._program), _arguments(orig._arguments), _showPdf(orig._showPdf)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected