summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-12-20 00:56:45 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-12-20 00:56:45 (GMT)
commit0388c7ac478187ff8d264b6e0275a4c4a43796b9 (patch)
tree7e62439ebf72b6369ee7b1daa370e6251c06b7e0 /src/uscxml/Interpreter.h
parent22e22bfd0965e01fea041e053873d352387805f6 (diff)
downloaduscxml-0388c7ac478187ff8d264b6e0275a4c4a43796b9.zip
uscxml-0388c7ac478187ff8d264b6e0275a4c4a43796b9.tar.gz
uscxml-0388c7ac478187ff8d264b6e0275a4c4a43796b9.tar.bz2
Performance and bugfix for WebSockets
Diffstat (limited to 'src/uscxml/Interpreter.h')
-rw-r--r--src/uscxml/Interpreter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/uscxml/Interpreter.h b/src/uscxml/Interpreter.h
index 5cc9053..d2e63e9 100644
--- a/src/uscxml/Interpreter.h
+++ b/src/uscxml/Interpreter.h
@@ -236,7 +236,7 @@ public:
}
Arabica::DOM::Node<std::string> getState(const std::string& stateId);
- Arabica::XPath::NodeSet<std::string> getStates(const std::vector<std::string>& stateIds);
+ Arabica::XPath::NodeSet<std::string> getStates(const std::list<std::string>& stateIds);
Arabica::DOM::Document<std::string>& getDocument() {
return _document;
@@ -286,7 +286,7 @@ public:
static bool isCompound(const Arabica::DOM::Node<std::string>& state);
static bool isDescendant(const Arabica::DOM::Node<std::string>& s1, const Arabica::DOM::Node<std::string>& s2);
- static std::vector<std::string> tokenizeIdRefs(const std::string& idRefs);
+ static std::list<std::string> tokenizeIdRefs(const std::string& idRefs);
static std::string spaceNormalize(const std::string& text);
bool isInEmbeddedDocument(const Arabica::DOM::Node<std::string>& node);
@@ -540,7 +540,7 @@ public:
Arabica::DOM::Node<std::string> getState(const std::string& stateId) {
return _impl->getState(stateId);
}
- Arabica::XPath::NodeSet<std::string> getStates(const std::vector<std::string>& stateIds) {
+ Arabica::XPath::NodeSet<std::string> getStates(const std::list<std::string>& stateIds) {
return _impl->getStates(stateIds);
}
@@ -628,7 +628,7 @@ public:
return InterpreterImpl::isDescendant(s1, s2);
}
- static std::vector<std::string> tokenizeIdRefs(const std::string& idRefs) {
+ static std::list<std::string> tokenizeIdRefs(const std::string& idRefs) {
return InterpreterImpl::tokenizeIdRefs(idRefs);
}
static std::string spaceNormalize(const std::string& text) {