#ifndef MDD_PROCESSORMANUAL_H #define MDD_PROCESSORMANUAL_H #include "ProcessorBase.h" #include "Output.h" namespace mdd { class ProcessorManual : public ProcessorBase { public: ProcessorManual(); bool update() override; std::shared_ptr getIteration(); }; } #endif //MDD_PROCESSORMANUAL_H