summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.cpp
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-04-09 22:51:16 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-04-09 22:51:16 (GMT)
commit8a9b432d36e5748898abffe9f1607d93e45bab4b (patch)
tree0b95e832a9b3b2daf9ae45bf81084eda580752a0 /src/uscxml/Factory.cpp
parent7d98ac1fd2e9da3162f3b6d38b22106f463edd9d (diff)
downloaduscxml-8a9b432d36e5748898abffe9f1607d93e45bab4b.zip
uscxml-8a9b432d36e5748898abffe9f1607d93e45bab4b.tar.gz
uscxml-8a9b432d36e5748898abffe9f1607d93e45bab4b.tar.bz2
Started with promela datamodel
Diffstat (limited to 'src/uscxml/Factory.cpp')
-rw-r--r--src/uscxml/Factory.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/uscxml/Factory.cpp b/src/uscxml/Factory.cpp
index f975f39..a66b024 100644
--- a/src/uscxml/Factory.cpp
+++ b/src/uscxml/Factory.cpp
@@ -102,6 +102,7 @@
#include "uscxml/plugins/datamodel/null/NULLDataModel.h"
#include "uscxml/plugins/datamodel/xpath/XPathDataModel.h"
+#include "uscxml/plugins/datamodel/promela/PromelaDataModel.h"
# include "uscxml/plugins/element/file/FileElement.h"
@@ -256,6 +257,15 @@ Factory::Factory() {
}
#endif
+#if 1
+#if (defined BUILD_DM_PROMELA)
+ {
+ PromelaDataModel* dataModel = new PromelaDataModel();
+ registerDataModel(dataModel);
+ }
+#endif
+#endif
+
#ifdef BUILD_DM_XPATH
{
XPathDataModel* dataModel = new XPathDataModel();