bpmn++
A BPMN parser library, written in C++
Loading...
Searching...
No Matches
EscalationBoundaryEvent.h
Go to the documentation of this file.
1#ifndef BPMN_EscalationBoundaryEvent_H
2#define BPMN_EscalationBoundaryEvent_H
3
4#include <memory>
5#include <vector>
6#include <optional>
8#include "BoundaryEvent.h"
9
10namespace BPMN {
11
12class EscalationBoundaryEvent : virtual public BoundaryEvent, virtual public CatchEvent {
13 friend class Model;
14public:
17};
18
19} // namespace BPMN
20
21#endif // BPMN_EscalationBoundaryEvent_H
BoundaryEvent(XML::bpmn::tBoundaryEvent *boundaryEvent, Scope *parent)
CatchEvent(XML::bpmn::tCatchEvent *catchEvent, Scope *parent)
Definition CatchEvent.cpp:5
Scope * parent
Reference to the parent node.
Definition ChildNode.h:46
XML::bpmn::tBoundaryEvent * element
EscalationBoundaryEvent(XML::bpmn::tBoundaryEvent *boundaryEvent, Scope *parent)
Base class for BPMN elements that may contain a ChildNode elements.
Definition Scope.h:24
The BPMN namespace contains linked classes representing a BPMN model.