#ifndef ONF_STEPFILLMASKGAPS_H #define ONF_STEPFILLMASKGAPS_H #include "ct_step/abstract/ct_abstractstep.h" #include "ct_itemdrawable/ct_image2d.h" // Inclusion of auto-indexation system #include "ct_tools/model/ct_autorenamemodels.h" class ONF_StepFillMaskGaps: public CT_AbstractStep { Q_OBJECT public: ONF_StepFillMaskGaps(CT_StepInitializeData &dataInit); QString getStepDescription() const; QString getStepDetailledDescription() const; QString getStepURL() const; CT_VirtualAbstractStep* createNewInstance(CT_StepInitializeData &dataInit); protected: void createInResultModelListProtected(); void createOutResultModelListProtected(); void compute(); private: // Declaration of autoRenames Variables (groups or items added to In models copies) CT_AutoRenameModels _outMask_ModelName; }; #endif // ONF_STEPFILLMASKGAPS_H