summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/DataModel.cpp
diff options
context:
space:
mode:
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..19a01c9 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);
}