bpmn++
A BPMN parser library, written in C++
Loading...
Searching...
No Matches
DataStore.h
Go to the documentation of this file.
1#ifndef BPMN_DataStore_H
2#define BPMN_DataStore_H
3
4#include <memory>
5#include <vector>
6#include <optional>
8#include "BaseElement.h"
9
10namespace BPMN {
11
12class DataStore : public BaseElement {
13 friend class Model;
14public:
17protected:
18};
19
20} // namespace BPMN
21
22#endif // BPMN_DataStore_H
BaseElement(XML::bpmn::tBaseElement *element)
Constructs a BaseElement object representing a BPMN element.
friend class Model
Definition DataStore.h:13
XML::bpmn::tDataStore * element
Definition DataStore.h:16
DataStore(XML::bpmn::tDataStore *dataStore)
Definition DataStore.cpp:6
The BPMN namespace contains linked classes representing a BPMN model.