aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/processstep.h
diff options
context:
space:
mode:
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