summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/operationrunner.h
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@nokia.com>2011-09-08 15:24:47 +0200
committerKarsten Heimrich <karsten.heimrich@nokia.com>2011-09-08 16:51:18 +0200
commitff60c4cbe2d480923437f1756ea38eefdd865b57 (patch)
treec949fd371f7591267a8d31290835f967ec89deee /installerbuilder/libinstaller/operationrunner.h
parent1ed5b98c1c208cbe3a9060d53af02741e820f5b0 (diff)
Remove some superfluous includes. Small style change.
Change-Id: Ieecff392a6c219832c3c99c1fbb8f95f0b6d4232 Reviewed-on: http://codereview.qt-project.org/4460 Reviewed-by: Karsten Heimrich <karsten.heimrich@nokia.com>
Diffstat (limited to 'installerbuilder/libinstaller/operationrunner.h')
-rw-r--r--installerbuilder/libinstaller/operationrunner.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/installerbuilder/libinstaller/operationrunner.h b/installerbuilder/libinstaller/operationrunner.h
index 50d283e0a..c92614e77 100644
--- a/installerbuilder/libinstaller/operationrunner.h
+++ b/installerbuilder/libinstaller/operationrunner.h
@@ -28,9 +28,7 @@
#include "installer_global.h"
-#include <QtCore/QObject>
-
-#include <iostream>
+QT_FORWARD_DECLARE_CLASS(QStringList)
namespace QInstaller {
@@ -43,8 +41,9 @@ public:
~OperationRunner();
bool init();
- int runOperation(const QStringList &arguments);
void setVerbose(bool verbose);
+ int runOperation(const QStringList &arguments);
+
private:
PackageManagerCore *m_core;
};