| 36 | #endif |
| 37 | |
| 38 | AbstractInputParser::AbstractInputParser() : QObject(), |
| 39 | _futureWatcher(new QFutureWatcher<void>()), |
| 40 | _sm(nullptr), |
| 41 | _fileName(""), |
| 42 | _isSuccess(false), |
| 43 | _error(tr("not processed yet")), |
| 44 | _sf2Index(-1) |
| 45 | { |
| 46 | connect(_futureWatcher, SIGNAL(finished()), this, SIGNAL(finished()), Qt::QueuedConnection); |
| 47 | } |
| 48 | |
| 49 | AbstractInputParser::~AbstractInputParser() |
| 50 | { |
nothing calls this directly
no outgoing calls
no test coverage detected