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