2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2018 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2018-12-14 15:41:59 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-03-29 08:09:49 +02:00
|
|
|
#include <projectexplorer/buildstep.h>
|
2023-03-21 16:07:20 +01:00
|
|
|
|
2023-07-21 09:21:20 +02:00
|
|
|
namespace RemoteLinux::Internal {
|
2022-10-12 14:37:14 +03:00
|
|
|
|
2023-07-21 09:21:20 +02:00
|
|
|
class RsyncDeployStepFactory : public ProjectExplorer::BuildStepFactory
|
2023-03-24 17:45:44 +01:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
RsyncDeployStepFactory();
|
|
|
|
|
};
|
|
|
|
|
|
2023-07-21 09:21:20 +02:00
|
|
|
} // namespace RemoteLinux::Internal
|