BPMN-OS
BPMN for optimization and simulation
Loading...
Searching...
No Matches
Observer.h
Go to the documentation of this file.
1#ifndef BPMNOS_Execution_Observer_H
2#define BPMNOS_Execution_Observer_H
3
4#include "Observable.h"
5
6namespace BPMNOS::Execution {
7
8
9class Observer {
10public:
11 virtual void notice(const Observable* observable) = 0;
12};
13
14} // namespace BPMNOS::Execution
15#endif // BPMNOS_Execution_Observer_H
virtual void notice(const Observable *observable)=0