aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/itestframework.h
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2016-10-05 12:39:23 +0200
committerChristian Stenger <christian.stenger@qt.io>2016-10-10 06:34:28 +0000
commit18dc7a5de96d8376ebb6ec2d619205f8413bb67c (patch)
tree2b0e6f924578393285756231ea5008c90015567d /src/plugins/autotest/itestframework.h
parenta6032652ef00e05f88c3dfcd7fde64b72c2c067e (diff)
AutoTest: Move framework settings into framework manager
Change-Id: I9914291adb102de5136802eb3b6d12afb6276538 Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/autotest/itestframework.h')
-rw-r--r--src/plugins/autotest/itestframework.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/autotest/itestframework.h b/src/plugins/autotest/itestframework.h
index 6703a1ca33..35e0df68cd 100644
--- a/src/plugins/autotest/itestframework.h
+++ b/src/plugins/autotest/itestframework.h
@@ -31,6 +31,8 @@
namespace Autotest {
namespace Internal {
+class IFrameworkSettings;
+
class ITestFramework
{
public:
@@ -43,6 +45,8 @@ public:
virtual const char *name() const = 0;
virtual unsigned priority() const = 0; // should this be modifyable?
+ virtual bool hasFrameworkSettings() const { return false; }
+ virtual IFrameworkSettings *createFrameworkSettings() const { return 0; }
TestTreeItem *rootNode()
{ if (!m_rootNode)