summaryrefslogtreecommitdiff
path: root/doc/examples/wizard/customproject/customprojectwizard.h
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/wizard/customproject/customprojectwizard.h')
-rw-r--r--doc/examples/wizard/customproject/customprojectwizard.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/doc/examples/wizard/customproject/customprojectwizard.h b/doc/examples/wizard/customproject/customprojectwizard.h
deleted file mode 100644
index d934878813..0000000000
--- a/doc/examples/wizard/customproject/customprojectwizard.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef CUSTOMPROJECTWIZARD_H
-#define CUSTOMPROJECTWIZARD_H
-
-#include <coreplugin/dialogs/iwizard.h>
-
-class CustomProjectWizard : public Core::IWizard
-{
-public:
- CustomProjectWizard();
- ~CustomProjectWizard();
-
- Core::IWizard::Kind kind() const;
- QIcon icon() const;
- QString description() const;
- QString name() const;
- QString category() const;
- QString trCategory() const;
- QStringList runWizard(const QString &path, QWidget *parent);
-};
-
-#endif // CUSTOMPROJECTWIZARD_H