Maemo: Introduce deploy step infrastructure.

Doesn't do anything yet.
This commit is contained in:
ck
2010-07-12 11:07:36 +02:00
parent f823c4810e
commit 6fc00ddca8
11 changed files with 311 additions and 4 deletions

View File

@@ -0,0 +1,34 @@
#ifndef MAEMODEPLOYSTEPWIDGET_H
#define MAEMODEPLOYSTEPWIDGET_H
#include <projectexplorer/buildstep.h>
QT_BEGIN_NAMESPACE
namespace Ui {
class MaemoDeployStepWidget;
}
QT_END_NAMESPACE
namespace Qt4ProjectManager {
namespace Internal {
class MaemoDeployStepWidget : public ProjectExplorer::BuildStepConfigWidget
{
Q_OBJECT
public:
MaemoDeployStepWidget();
~MaemoDeployStepWidget();
private:
virtual void init();
virtual QString summaryText() const;
virtual QString displayName() const;
Ui::MaemoDeployStepWidget *ui;
};
} // namespace Internal
} // namespace Qt4ProjectManager
#endif // MAEMODEPLOYSTEPWIDGET_H