Files
qt-creator/doc/examples/wizard/customproject/customprojectwizard.h
Abhishek Patil abcb9358c2 Qt Creator Plugin HOWTO documentation first and second cut
Signed-off-by: Abhishek Patil <abhishek.patil@vcreatelogic.com>

Merge-request: 145
Reviewed-by: con <qtc-committer@nokia.com>
2010-06-21 17:32:15 +02:00

22 lines
501 B
C++

#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