aboutsummaryrefslogtreecommitdiffstats
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.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/plugins/remotelinux/genericdirectuploadservice.h b/src/plugins/remotelinux/genericdirectuploadservice.h
deleted file mode 100644
index 31799f063ad..00000000000
--- a/src/plugins/remotelinux/genericdirectuploadservice.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-#pragma once
-
-#include "remotelinux_export.h"
-
-#include "abstractremotelinuxdeploystep.h"
-
-#include <QList>
-
-namespace ProjectExplorer { class DeployableFile; }
-
-namespace RemoteLinux {
-namespace Internal { class GenericDirectUploadServicePrivate; }
-
-enum class IncrementalDeployment { Enabled, Disabled, NotSupported };
-
-class REMOTELINUX_EXPORT GenericDirectUploadService : public AbstractRemoteLinuxDeployService
-{
- Q_OBJECT
-public:
- GenericDirectUploadService(QObject *parent = nullptr);
- ~GenericDirectUploadService();
-
- void setDeployableFiles(const QList<ProjectExplorer::DeployableFile> &deployableFiles);
- void setIncrementalDeployment(IncrementalDeployment incremental);
- void setIgnoreMissingFiles(bool ignoreMissingFiles);
-
-private:
- bool isDeploymentNecessary() const final;
- Utils::Tasking::Group deployRecipe() final;
-
- friend class Internal::GenericDirectUploadServicePrivate;
- Internal::GenericDirectUploadServicePrivate * const d;
-};
-
-} //namespace RemoteLinux