ProcessorManual.h 376 B

1234567891011121314151617
  1. #ifndef MDD_PROCESSORMANUAL_H
  2. #define MDD_PROCESSORMANUAL_H
  3. #include "ProcessorBase.h"
  4. #include "Output.h"
  5. namespace mdd {
  6. class ProcessorManual : public ProcessorBase {
  7. private:
  8. Output _iteration;
  9. public:
  10. ProcessorManual();
  11. bool update() override;
  12. std::shared_ptr<IOutput> getIteration();
  13. };
  14. }
  15. #endif //MDD_PROCESSORMANUAL_H