aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/processstep.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-02-20 17:31:28 +0100
committerhjk <hjk@qt.io>2020-02-21 11:48:08 +0000
commit1627850e8124f4c8e518bfbb6c5f9d79198ce8d8 (patch)
tree7e12a9c1d75a67bb668527be449422b9392551df /src/plugins/projectexplorer/processstep.h
parent1714ecf8092533eaba196212d4f0feb581449ecf (diff)
ProjectExplorer: Un-export ProcessStep
Not used outside. Change-Id: Ibab561d2f49ffce5b2e1d2505ef0634c802221b0 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/processstep.h')
-rw-r--r--src/plugins/projectexplorer/processstep.h25
1 files changed, 4 insertions, 21 deletions
diff --git a/src/plugins/projectexplorer/processstep.h b/src/plugins/projectexplorer/processstep.h
index 95f0f49a22..964f0685db 100644
--- a/src/plugins/projectexplorer/processstep.h
+++ b/src/plugins/projectexplorer/processstep.h
@@ -25,33 +25,16 @@
#pragma once
-#include "abstractprocessstep.h"
-#include "projectconfigurationaspects.h"
-#include "projectexplorer_export.h"
+#include "buildstep.h"
namespace ProjectExplorer {
+namespace Internal {
-class ProcessStepFactory : public BuildStepFactory
+class ProcessStepFactory final : public BuildStepFactory
{
public:
ProcessStepFactory();
};
-class PROJECTEXPLORER_EXPORT ProcessStep : public AbstractProcessStep
-{
- Q_OBJECT
- friend class ProcessStepFactory;
-
-public:
- ProcessStep(BuildStepList *bsl, Core::Id id);
-
-private:
- bool init() override;
- void setupProcessParameters(ProcessParameters *pp);
-
- ProjectExplorer::BaseStringAspect *m_command;
- ProjectExplorer::BaseStringAspect *m_arguments;
- ProjectExplorer::BaseStringAspect *m_workingDirectory;
-};
-
+} // namespace Internal
} // namespace ProjectExplorer