GenericProjectManager: De-O_OBJECT-ify GenericMakeStep

Change-Id: I8f65d9461a48d27e6cf21b32f7b364127a7036b5
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2020-02-20 15:40:25 +01:00
parent 3f178e4ee3
commit 5a47cd0d50
2 changed files with 7 additions and 11 deletions

View File

@@ -34,6 +34,12 @@ using namespace ProjectExplorer;
namespace GenericProjectManager { namespace GenericProjectManager {
namespace Internal { namespace Internal {
class GenericMakeStep : public ProjectExplorer::MakeStep
{
public:
explicit GenericMakeStep(BuildStepList *parent, Core::Id id);
};
GenericMakeStep::GenericMakeStep(BuildStepList *parent, Core::Id id) GenericMakeStep::GenericMakeStep(BuildStepList *parent, Core::Id id)
: MakeStep(parent, id) : MakeStep(parent, id)
{ {

View File

@@ -27,20 +27,10 @@
#include <projectexplorer/makestep.h> #include <projectexplorer/makestep.h>
QT_FORWARD_DECLARE_CLASS(QListWidgetItem);
namespace GenericProjectManager { namespace GenericProjectManager {
namespace Internal { namespace Internal {
class GenericMakeStep : public ProjectExplorer::MakeStep class GenericMakeStepFactory final : public ProjectExplorer::BuildStepFactory
{
Q_OBJECT
public:
explicit GenericMakeStep(ProjectExplorer::BuildStepList *parent, Core::Id id);
};
class GenericMakeStepFactory : public ProjectExplorer::BuildStepFactory
{ {
public: public:
GenericMakeStepFactory(); GenericMakeStepFactory();