BPMN-OS
BPMN for optimization and simulation
Loading...
Searching...
No Matches
TimeWarp.cpp
Go to the documentation of this file.
1#include "TimeWarp.h"
3
4using namespace BPMNOS::Execution;
5
9
10std::shared_ptr<Event> TimeWarp::dispatchEvent( [[maybe_unused]] const SystemState* systemState ) {
11 return std::make_shared<ClockTickEvent>();
12}
13
A class representing the state that the execution or simulation of a given scenario is in.
Definition SystemState.h:21
std::shared_ptr< Event > dispatchEvent(const SystemState *systemState) override
Definition TimeWarp.cpp:10