aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/copystep.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/copystep.h')
-rw-r--r--src/plugins/projectexplorer/copystep.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/copystep.h b/src/plugins/projectexplorer/copystep.h
new file mode 100644
index 00000000000..07940f3a89a
--- /dev/null
+++ b/src/plugins/projectexplorer/copystep.h
@@ -0,0 +1,22 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+#pragma once
+
+#include "buildstep.h"
+
+namespace ProjectExplorer::Internal {
+
+class CopyFileStepFactory final : public BuildStepFactory
+{
+public:
+ CopyFileStepFactory();
+};
+
+class CopyDirectoryStepFactory final : public BuildStepFactory
+{
+public:
+ CopyDirectoryStepFactory();
+};
+
+} // ProjectExplorer::Internal