summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/DataModel.cpp
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-07-19 17:46:37 (GMT)
committerGitHub <noreply@github.com>2017-07-19 17:46:37 (GMT)
commit998e624aaddb237767f5d80e0ff12eb2cfdc814b (patch)
tree7583d7bf04d760d8b889a5618b7d98679ef4b423 /src/uscxml/plugins/DataModel.cpp
parent4a9b4978eca21c01e45bdea56ee97285b8ca11a7 (diff)
parente0a7e43e2e41639bb50127cc5419b712a7b1f6e2 (diff)
downloaduscxml-998e624aaddb237767f5d80e0ff12eb2cfdc814b.zip
uscxml-998e624aaddb237767f5d80e0ff12eb2cfdc814b.tar.gz
uscxml-998e624aaddb237767f5d80e0ff12eb2cfdc814b.tar.bz2
Merge pull request #163 from tklab-tud/sradomski
DOM with Lua DataModel and dropped V8
Diffstat (limited to 'src/uscxml/plugins/DataModel.cpp')
-rw-r--r--src/uscxml/plugins/DataModel.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/uscxml/plugins/DataModel.cpp b/src/uscxml/plugins/DataModel.cpp
index cf4dda2..1b12e88 100644
--- a/src/uscxml/plugins/DataModel.cpp
+++ b/src/uscxml/plugins/DataModel.cpp
@@ -30,6 +30,10 @@ bool DataModel::isValidSyntax(const std::string& expr) {
return _impl->isValidSyntax(expr);
}
+bool DataModel::isLegalDataValue(const std::string& expr) {
+ return _impl->isLegalDataValue(expr);
+}
+
void DataModel::setEvent(const Event& event) {
return _impl->setEvent(event);
}