bpmn++
A BPMN parser library, written in C++
Loading...
Searching...
No Matches
tBaseElement.h
Go to the documentation of this file.
1#ifndef XML_bpmn_tBaseElement_H
2#define XML_bpmn_tBaseElement_H
3#include <memory>
4#include <optional>
5#include <vector>
6
7#include "../XMLObject.h"
8#include "tDocumentation.h"
10
11/**
12 * @brief The `XML::bpmn` namespace contains classes from the following XML-schema(s): @ref xsd/DC.xsd, @ref xsd/DI.xsd, @ref xsd/BPMNDI.xsd, @ref xsd/Semantic.xsd, @ref xsd/BPMN20.xsd.
13 */
14namespace XML::bpmn {
15
16class tDocumentation;
17class tExtensionElements;
18
19/**
20 * Overview:
21 * - Element name: tBaseElement
22 * - XML-Schema: xsd/Semantic.xsd
23 * - XML-Namespace: http://www.omg.org/spec/BPMN/20100524/MODEL
24 *
25 * Members:
26 * - documentation : tDocumentation [0..*]
27 * - extensionElements : tExtensionElements [0..1]
28 * - id : ID [0..1]
29 *
30 * Automatically generated by schematic++ v0.6.0 (https://github.com/rajgoel/schematicpp)
31 */
32class tBaseElement : public XMLObject {
33 template<typename T> friend XMLObject* ::XML::createInstance(const Namespace& xmlns, const ClassName& className, const xercesc::DOMElement* element);
34private:
35 static bool registerClass() {
36 XMLObject::factory["http://www.omg.org/spec/BPMN/20100524/MODEL:tBaseElement"] = &createInstance<tBaseElement>; // register function in factory
37 return true;
38 };
39 inline static bool registered = registerClass();
40protected:
41 tBaseElement(const Namespace& xmlns, const ClassName& className, const xercesc::DOMElement* element, const Attributes& defaultAttributes);
42
43 friend class tLane;
44
45public:
46 /// default attributes to be used if they are not explicitly provided
47 inline static const Attributes defaults = {
48 };
49
50 std::vector< std::reference_wrapper<tDocumentation> > documentation;
51 std::optional< std::reference_wrapper<tExtensionElements> > extensionElements;
52 std::optional< std::reference_wrapper<Attribute> > id; ///< Attribute value can be expected to be of type 'std::string'
53};
54
55} // namespace XML::bpmn
56
57#endif // XML_bpmn_tBaseElement_H
A class representing a node in an XML-tree.
Definition XMLObject.h:115
const ClassName className
Definition XMLObject.h:243
static Factory factory
Definition XMLObject.h:155
Namespace xmlns
Definition XMLObject.h:242
static const Attributes defaults
default attributes to be used if they are not explicitly provided
std::optional< std::reference_wrapper< tExtensionElements > > extensionElements
std::vector< std::reference_wrapper< tDocumentation > > documentation
std::optional< std::reference_wrapper< Attribute > > id
Attribute value can be expected to be of type 'std::string'.
The XML::bpmn namespace contains classes from the following XML-schema(s): xsd/DC....
std::string Namespace
Definition XMLObject.h:24
std::vector< Attribute > Attributes
Definition XMLObject.h:80
std::string ClassName
Definition XMLObject.h:21
XMLObject * createInstance(const Namespace &xmlns, const ClassName &className, const xercesc::DOMElement *element)
Template function used to store in factory.
Definition XMLObject.h:84