aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/genericdirectuploadstep.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-09-14 12:41:47 +0200
committerhjk <hjk@qt.io>2018-09-18 06:15:35 +0000
commit760723f7630c3ed64c213a70e8d75419685d45a1 (patch)
tree72edb44ce19f73e7000d0697da98669f6b5d9a68 /src/plugins/remotelinux/genericdirectuploadstep.h
parent83a8b8bf8fec0e37852de5d76b55b146346aa7a8 (diff)
ProjectExplorer: Add BuildStep::createConfigWidget default implementation
This starts the same process as done for run configuration widgets: Add an aspect based default implementation and base build step data handling on aspects. As first example use the RemoteLinux::GenericDirectUploadStep Change-Id: Ia2d1fcd393e667094b7852371b893d8356c3eace Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/plugins/remotelinux/genericdirectuploadstep.h')
-rw-r--r--src/plugins/remotelinux/genericdirectuploadstep.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plugins/remotelinux/genericdirectuploadstep.h b/src/plugins/remotelinux/genericdirectuploadstep.h
index b5d2ba1df6e..a17c866a447 100644
--- a/src/plugins/remotelinux/genericdirectuploadstep.h
+++ b/src/plugins/remotelinux/genericdirectuploadstep.h
@@ -43,19 +43,11 @@ public:
ProjectExplorer::BuildStepConfigWidget *createConfigWidget() override;
bool initInternal(QString *error = nullptr) override;
- void setIncrementalDeployment(bool incremental);
- bool incrementalDeployment() const;
-
- void setIgnoreMissingFiles(bool ignoreMissingFiles);
- bool ignoreMissingFiles() const;
-
static Core::Id stepId();
static QString displayName();
private:
GenericDirectUploadService *deployService() const override;
- bool fromMap(const QVariantMap &map) override;
- QVariantMap toMap() const override;
Internal::GenericDirectUploadStepPrivate *d;
};