aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/autotest/testxmloutputreader.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/autotest/testxmloutputreader.h')
-rw-r--r--plugins/autotest/testxmloutputreader.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/plugins/autotest/testxmloutputreader.h b/plugins/autotest/testxmloutputreader.h
index 6dfcef51cc..feb99c46b2 100644
--- a/plugins/autotest/testxmloutputreader.h
+++ b/plugins/autotest/testxmloutputreader.h
@@ -24,10 +24,9 @@
#include <QObject>
#include <QString>
+#include <QXmlStreamReader>
QT_BEGIN_NAMESPACE
-class QXmlStreamReader;
-class QIODevice;
class QProcess;
QT_END_NAMESPACE
@@ -37,18 +36,18 @@ namespace Internal {
class TestXmlOutputReader : public QObject
{
Q_OBJECT
-
public:
TestXmlOutputReader(QProcess *testApplication);
- ~TestXmlOutputReader();
public slots:
void processOutput();
+
signals:
void testResultCreated(TestResult *testResult);
void increaseProgress();
+
private:
- QProcess *m_testApplication;
+ QProcess *m_testApplication; // not owned
};
} // namespace Internal