summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/genericdirectuploadservice.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/remotelinux/genericdirectuploadservice.h')
-rw-r--r--src/plugins/remotelinux/genericdirectuploadservice.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/remotelinux/genericdirectuploadservice.h b/src/plugins/remotelinux/genericdirectuploadservice.h
index e268b856c4..55d07287ae 100644
--- a/src/plugins/remotelinux/genericdirectuploadservice.h
+++ b/src/plugins/remotelinux/genericdirectuploadservice.h
@@ -39,8 +39,9 @@
QT_FORWARD_DECLARE_CLASS(QString)
+namespace ProjectExplorer { class DeployableFile; }
+
namespace RemoteLinux {
-class DeployableFile;
namespace Internal { class GenericDirectUploadServicePrivate; }
class REMOTELINUX_EXPORT GenericDirectUploadService : public AbstractRemoteLinuxDeployService
@@ -50,7 +51,7 @@ public:
GenericDirectUploadService(QObject *parent = 0);
~GenericDirectUploadService();
- void setDeployableFiles(const QList<DeployableFile> &deployableFiles);
+ void setDeployableFiles(const QList<ProjectExplorer::DeployableFile> &deployableFiles);
void setIncrementalDeployment(bool incremental);
protected:
@@ -72,7 +73,7 @@ private slots:
void handleStdErrData();
private:
- void checkDeploymentNeeded(const DeployableFile &file) const;
+ void checkDeploymentNeeded(const ProjectExplorer::DeployableFile &file) const;
void setFinished();
void uploadNextFile();