BPMN-OS
BPMN for optimization and simulation
Loading...
Searching...
No Matches
tDecisions.h
Go to the documentation of this file.
1#ifndef XML_bpmnos_tDecisions_H
2#define XML_bpmnos_tDecisions_H
3#include <memory>
4#include <optional>
5#include <vector>
6
7#include "../XMLObject.h"
8#include "tDecision.h"
9
10/**
11 * @brief The `XML::bpmnos` namespace contains classes from the following XML-schema(s): @ref xsd/BPMNOS.xsd.
12 */
13namespace XML::bpmnos {
14
15class tDecision;
16
17/**
18 * Overview:
19 * - Element name: tDecisions
20 * - XML-Schema: xsd/BPMNOS.xsd
21 * - XML-Namespace: https://bpmnos.telematique.eu
22 *
23 * Members:
24 * - decision : tDecision [0..*]
25 *
26 * Automatically generated by schematic++ v0.4.0 (https://github.com/rajgoel/schematicpp)
27 */
28class tDecisions : public XMLObject {
29 template<typename T> friend XMLObject* ::XML::createInstance(const Namespace& xmlns, const ClassName& className, const xercesc::DOMElement* element);
30private:
31 static bool registerClass() {
32 XMLObject::factory["https://bpmnos.telematique.eu:tDecisions"] = &createInstance<tDecisions>; // register function in factory
33 return true;
34 };
35 inline static bool registered = registerClass();
36protected:
37 tDecisions(const Namespace& xmlns, const ClassName& className, const xercesc::DOMElement* element, const Attributes& defaultAttributes);
38
39 friend class tStatus;
40
41public:
42 /// default attributes to be used if they are not explicitly provided
43 inline static const Attributes defaults = {
44 };
45
46 std::vector< std::reference_wrapper<tDecision> > decision;
47};
48
49} // namespace XML::bpmnos
50
51#endif // XML_bpmnos_tDecisions_H
A class representing a node in an XML-tree.
Definition XMLObject.h:115
const ClassName className
Definition bpmn++.h:244
static Factory factory
Definition bpmn++.h:156
Namespace xmlns
Definition bpmn++.h:243
friend XMLObject * XML::createInstance(const Namespace &xmlns, const ClassName &className, const xercesc::DOMElement *element)
tDecisions(const Namespace &xmlns, const ClassName &className, const xercesc::DOMElement *element, const Attributes &defaultAttributes)
Definition tDecisions.cpp:6
std::vector< std::reference_wrapper< tDecision > > decision
Definition tDecisions.h:46
static const Attributes defaults
default attributes to be used if they are not explicitly provided
Definition tDecisions.h:43
The XML::bpmnos namespace contains classes from the following XML-schema(s): xsd/BPMNOS....
Definition attribute.h:13
std::string Namespace
Definition bpmn++.h:25
std::string ClassName
Definition bpmn++.h:22
XMLObject * createInstance(const Namespace &xmlns, const ClassName &className, const xercesc::DOMElement *element)
Template function used to store in factory.
Definition bpmn++.h:85
std::vector< Attribute > Attributes
Definition bpmn++.h:81