ProcessorManual.h 335 B

1234567891011121314
  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. public:
  8. ProcessorManual();
  9. bool update() override;
  10. std::shared_ptr<IOutput> getIteration();
  11. };
  12. }
  13. #endif //MDD_PROCESSORMANUAL_H