bpmn++
A BPMN parser library, written in C++
Loading...
Searching...
No Matches
TimerStartEvent.cpp
Go to the documentation of this file.
1#include "TimerStartEvent.h"
2
3using namespace BPMN;
4
6 : Node(startEvent)
7 , FlowNode(startEvent,parent)
8 , CatchEvent(startEvent,parent)
9 , TimerCatchEvent(startEvent,parent)
10 , TypedStartEvent(startEvent,parent)
11 , element(startEvent)
12{
13}
14
Scope * parent
Reference to the parent node.
Definition ChildNode.h:46
Base class for BPMN elements that may contain incoming and outgoing sequence flows.
Definition FlowNode.h:20
Base class for all nodes in a BPMN model.
Definition Node.h:24
Base class for BPMN elements that may contain a ChildNode elements.
Definition Scope.h:24
TimerCatchEvent(XML::bpmn::tCatchEvent *catchEvent, Scope *parent)
XML::bpmn::tStartEvent * element
TimerStartEvent(XML::bpmn::tStartEvent *startEvent, Scope *parent)
TypedStartEvent(XML::bpmn::tStartEvent *startEvent, Scope *parent)
The BPMN namespace contains linked classes representing a BPMN model.