aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/genericdirectuploadstep.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/remotelinux/genericdirectuploadstep.h')
-rw-r--r--src/plugins/remotelinux/genericdirectuploadstep.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/genericdirectuploadstep.h b/src/plugins/remotelinux/genericdirectuploadstep.h
index 22601fbe20a..b7a17a2b653 100644
--- a/src/plugins/remotelinux/genericdirectuploadstep.h
+++ b/src/plugins/remotelinux/genericdirectuploadstep.h
@@ -36,7 +36,9 @@
#include "remotelinux_export.h"
namespace RemoteLinux {
-class GenericDirectUploadService;
+namespace Internal {
+class GenericDirectUploadStepPrivate;
+}
class REMOTELINUX_EXPORT GenericDirectUploadStep : public AbstractRemoteLinuxDeployStep
{
@@ -45,6 +47,7 @@ class REMOTELINUX_EXPORT GenericDirectUploadStep : public AbstractRemoteLinuxDep
public:
GenericDirectUploadStep(ProjectExplorer::BuildStepList *bsl, const QString &id);
GenericDirectUploadStep(ProjectExplorer::BuildStepList *bsl, GenericDirectUploadStep *other);
+ ~GenericDirectUploadStep();
bool isDeploymentPossible(QString *whyNot = 0) const;
@@ -56,7 +59,7 @@ private:
void ctor();
- GenericDirectUploadService *m_deployService;
+ Internal::GenericDirectUploadStepPrivate *m_d;
};
} //namespace RemoteLinux