summaryrefslogtreecommitdiffstats
path: root/tools/operationrunner/fakeinstaller.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/operationrunner/fakeinstaller.h')
-rw-r--r--tools/operationrunner/fakeinstaller.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/tools/operationrunner/fakeinstaller.h b/tools/operationrunner/fakeinstaller.h
deleted file mode 100644
index 6a581eda0..000000000
--- a/tools/operationrunner/fakeinstaller.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef FAKEINSTALLER_H
-#define FAKEINSTALLER_H
-
-#include <qinstaller.h>
-
-#include <QObject>
-#include <QMetaType>
-#include <QString>
-
-class FakeInstaller : public QInstaller::Installer
-{
- Q_OBJECT
-public:
- FakeInstaller() : QInstaller::Installer() {}
- void setTargetDir(const QString &targetDir);
- Q_INVOKABLE virtual QString value(const QString &key, const QString &defaultValue = QString()) const;
-
-private:
- QString m_targetDir;
-};
-
-Q_DECLARE_METATYPE(FakeInstaller*)
-
-#endif // FAKEINSTALLER_H