BPMN-OS
BPMN for optimization and simulation
Loading...
Searching...
No Matches
loopCharacteristics.h
Go to the documentation of this file.
1#ifndef XML_bpmnos_loopCharacteristics_H
2#define XML_bpmnos_loopCharacteristics_H
3#include <memory>
4#include <optional>
5#include <vector>
6
7#include "../XMLObject.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
15/**
16 * Overview:
17 * - Element name: loopCharacteristics
18 * - XML-Schema: xsd/BPMNOS.xsd
19 * - XML-Namespace: https://bpmnos.telematique.eu
20 *
21 * Members:
22 * - parameter : tParameter [0..*] (from: tLoopCharacteristics)
23 *
24 * Automatically generated by schematic++ v0.4.0 (https://github.com/rajgoel/schematicpp)
25 */
27 template<typename T> friend XMLObject* ::XML::createInstance(const Namespace& xmlns, const ClassName& className, const xercesc::DOMElement* element);
28private:
29 static bool registerClass() {
30 XMLObject::factory["https://bpmnos.telematique.eu:loopCharacteristics"] = &createInstance<loopCharacteristics>; // register function in factory
31 return true;
32 };
33 inline static bool registered = registerClass();
34protected:
35 loopCharacteristics(const Namespace& xmlns, const ClassName& className, const xercesc::DOMElement* element, const Attributes& defaultAttributes);
36
37public:
38 /// default attributes to be used if they are not explicitly provided
39 inline static const Attributes defaults = {
40 };
41
42};
43
44} // namespace XML::bpmnos
45
46#endif // XML_bpmnos_loopCharacteristics_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)
static const Attributes defaults
default attributes to be used if they are not explicitly provided
loopCharacteristics(const Namespace &xmlns, const ClassName &className, const xercesc::DOMElement *element, const Attributes &defaultAttributes)
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