summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-01 22:28:07 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-01 22:28:07 (GMT)
commitf19be97dea6fd8da994392d6fa7de5b3f0d9bf3e (patch)
tree4583fe7d5fa44f128ce92284429b6ee9f2c631bf /src/uscxml/Factory.h
parentc912952fb5e8072770262c64932c1d8cf2027cf0 (diff)
downloaduscxml-f19be97dea6fd8da994392d6fa7de5b3f0d9bf3e.zip
uscxml-f19be97dea6fd8da994392d6fa7de5b3f0d9bf3e.tar.gz
uscxml-f19be97dea6fd8da994392d6fa7de5b3f0d9bf3e.tar.bz2
Still more bugfixes and added w3c tests
Diffstat (limited to 'src/uscxml/Factory.h')
-rw-r--r--src/uscxml/Factory.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/uscxml/Factory.h b/src/uscxml/Factory.h
index b86c5d1..e257e45 100644
--- a/src/uscxml/Factory.h
+++ b/src/uscxml/Factory.h
@@ -246,13 +246,10 @@ public:
virtual bool evalAsBool(const std::string& expr) = 0;
virtual void assign(const std::string& location, const std::string& expr) = 0;
virtual void assign(const std::string& location, const Data& data) = 0;
- virtual bool isDefined(const std::string& expr) = 0;
+ virtual bool isDeclared(const std::string& expr) = 0;
protected:
Interpreter* _interpreter;
- std::string _sessionId;
- std::string _name;
-
};
class DataModel {
@@ -320,8 +317,8 @@ public:
return _impl->assign(location, data);
}
- virtual bool isDefined(const std::string& expr) {
- return _impl->isDefined(expr);
+ virtual bool isDeclared(const std::string& expr) {
+ return _impl->isDeclared(expr);
}
protected: