#ifndef ONF_STEPFOLDUPCROWN_H #define ONF_STEPFOLDUPCROWN_H #include "ct_step/abstract/ct_abstractstep.h" #include "ct_itemdrawable/ct_scene.h" class ONF_StepFoldUpCrown : public CT_AbstractStep { Q_OBJECT using SuperClass = CT_AbstractStep; public: ONF_StepFoldUpCrown(); QString description() const override; QString detailledDescription() const override; QString inputDescription() const override; QString outputDescription() const override; QString detailsDescription() const override; CT_VirtualAbstractStep* createNewInstance() const final; protected: void declareInputModels(CT_StepInModelStructureManager& manager) final; void declareOutputModels(CT_StepOutModelStructureManager& manager) final; void compute() final; private: CT_HandleInResultGroupCopy<> _inResult; CT_HandleInStdZeroOrMoreGroup _inZeroOrMoreRootGroup; CT_HandleInStdGroup<> _inGroup; CT_HandleInSingularItem _inScene; CT_HandleOutSingularItem _outScene; }; #endif // ONF_STEPFOLDUPCROWN_H