AutoTest: Report parse results through QFutureInterface

Change-Id: Ib99e9ae5efa26f01dd9c0b0bf5516e2e9dab73ce
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
Christian Stenger
2016-01-27 13:52:33 +01:00
parent fa3a35e346
commit 30b1e70c42
3 changed files with 129 additions and 132 deletions

View File

@@ -145,6 +145,13 @@ private:
};
struct TestParseResult
{
TestParseResult(TestTreeItem *it, TestTreeModel::Type t) : item(it), type(t) {}
TestTreeItem *item;
TestTreeModel::Type type;
};
} // namespace Internal
} // namespace Autotest