bpmn++
A BPMN parser library, written in C++
Loading...
Searching...
No Matches
tProcess.cpp
Go to the documentation of this file.
1#include "tProcess.h"
2
3using namespace XML;
4using namespace XML::bpmn;
5
6tProcess::tProcess(const Namespace& xmlns, const ClassName& className, const xercesc::DOMElement* element, const Attributes& defaultAttributes) :
7 tCallableElement(xmlns, className, element, defaultAttributes)
8 , auditing(getOptionalChild<tAuditing>())
9 , monitoring(getOptionalChild<tMonitoring>())
10 , property(getChildren<tProperty>())
11 , laneSet(getChildren<tLaneSet>())
12 , flowElement(getChildren<tFlowElement>())
13 , artifact(getChildren<tArtifact>())
14 , resourceRole(getChildren<tResourceRole>())
16 , supports(getChildrenByName("supports"))
17 , processType(getOptionalAttributeByName("processType"))
18 , isClosed(getOptionalAttributeByName("isClosed"))
19 , isExecutable(getOptionalAttributeByName("isExecutable"))
20 , definitionalCollaborationRef(getOptionalAttributeByName("definitionalCollaborationRef"))
21{
22}
tProcess(const Namespace &xmlns, const ClassName &className, const xercesc::DOMElement *element, const Attributes &defaultAttributes)
Definition tProcess.cpp:6
The XML::bpmn namespace contains classes from the following XML-schema(s): xsd/DC....
The XML namespace contains classes representing XML-nodes defined in given XML-schema(s).
Definition XMLObject.cpp:9
std::string Namespace
Definition XMLObject.h:24
std::vector< Attribute > Attributes
Definition XMLObject.h:80
std::string ClassName
Definition XMLObject.h:21