BPMN-OS
BPMN for optimization and simulation
Loading...
Searching...
No Matches
Model provider

The BPMNOS::Model::Model class can be used to read a BPMN file with respective extension elements for optimisation and simulation. All elements of a BPMN process or collaboration diagram can be read, however, not all elements are considered by the execution engine. An overview over the supported BPMN elements and the extension for optimisation and simulation is provided in

Below is a minimal example loading a BPMN model stored in the file diagram.bpmn.

#include <bpmnos-model.h>
int main() {
BPMNOS::Model::Model model("diagram.bpmn");
return 0;
}
Represents a BPMN model with all its processes.
Definition Model.h:21