forked from qt-creator/qt-creator
Maemo: Introduce abstract base class for deploy steps targeting devices.
This will make it possible for a MaemoRunConfiguration to work with deploy steps that do not use Utils::SshConnection, but still want to make use of our device configurations.
This commit is contained in:
@@ -43,14 +43,14 @@ QT_END_NAMESPACE
|
||||
|
||||
namespace Qt4ProjectManager {
|
||||
namespace Internal {
|
||||
class AbstractMaemoDeployStep;
|
||||
class AbstractLinuxDeviceDeployStep;
|
||||
|
||||
class MaemoDeployStepWidget : public ProjectExplorer::BuildStepConfigWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
MaemoDeployStepWidget(AbstractMaemoDeployStep *step);
|
||||
MaemoDeployStepWidget(AbstractLinuxDeviceDeployStep *step);
|
||||
~MaemoDeployStepWidget();
|
||||
|
||||
private:
|
||||
@@ -64,7 +64,7 @@ private:
|
||||
virtual QString displayName() const;
|
||||
|
||||
Ui::MaemoDeployStepWidget *ui;
|
||||
AbstractMaemoDeployStep * const m_step;
|
||||
AbstractLinuxDeviceDeployStep *const m_step;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user