BPMN-OS
BPMN for optimization and simulation
Loading...
Searching...
No Matches
Controller.cpp
Go to the documentation of this file.
1#include "Controller.h"
2
3using namespace BPMNOS::Execution;
4
8
21
22void Controller::notice(const Observable* observable) {
23 // forward observables
24 notify(observable);
25}
26
void notice(const Observable *observable) override
virtual void connect(Mediator *mediator)
Definition Controller.cpp:9
virtual void connect(Mediator *mediator)
void notify(const Observable *observable) const
Definition Notifier.cpp:10
void addSubscriber(Observer *subscriber, ObservableTypes... observableTypes)
Definition Notifier.h:16
Represents an abstract base class for a class that is an event listener and notifier.
Definition Mediator.h:13