summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.cpp
diff options
context:
space:
mode:
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();