summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.cpp
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-07 19:37:36 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-07 19:37:36 (GMT)
commit1c7064006d4283ffbfa64febea397e68df8e2b54 (patch)
tree14cdda919b95ead3dd33236e9f4a14e32c52bc51 /src/uscxml/Interpreter.cpp
parent409227b83b795582e8d00339f0cbf592ed39590b (diff)
downloaduscxml-1c7064006d4283ffbfa64febea397e68df8e2b54.zip
uscxml-1c7064006d4283ffbfa64febea397e68df8e2b54.tar.gz
uscxml-1c7064006d4283ffbfa64febea397e68df8e2b54.tar.bz2
Reformatted and removed superfluous std::couts
Diffstat (limited to 'src/uscxml/Interpreter.cpp')
-rw-r--r--src/uscxml/Interpreter.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/uscxml/Interpreter.cpp b/src/uscxml/Interpreter.cpp
index 8c0b660..33d3b03 100644
--- a/src/uscxml/Interpreter.cpp
+++ b/src/uscxml/Interpreter.cpp
@@ -518,12 +518,12 @@ void InterpreterImpl::normalize(Arabica::DOM::Element<std::string>& scxml) {
}
void InterpreterImpl::receiveInternal(const Event& event) {
- std::cout << "receiveInternal: " << event.name << std::endl;
+// std::cout << "receiveInternal: " << event.name << std::endl;
_internalQueue.push_back(event);
}
void InterpreterImpl::receive(const Event& event, bool toFront) {
- std::cout << "receive: " << event.name << std::endl;
+// std::cout << "receive: " << event.name << std::endl;
if (toFront) {
_externalQueue.push_front(event);
} else {
@@ -557,9 +557,9 @@ void InterpreterImpl::internalDoneSend(const Arabica::DOM::Node<std::string>& st
}
void InterpreterImpl::processContentElement(const Arabica::DOM::Node<std::string>& content,
- Arabica::DOM::Document<std::string>& dom,
- std::string& text,
- Data& data) {
+ Arabica::DOM::Document<std::string>& dom,
+ std::string& text,
+ Data& data) {
try {
std::string contentToProcess;
if (HAS_ATTR(content, "expr")) {
@@ -587,7 +587,7 @@ void InterpreterImpl::processContentElement(const Arabica::DOM::Node<std::string
}
contentChild = contentChild.getNextSibling();
}
-
+
if (contentChild && presentAsDom) {
// use the whole dom
DOMImplementation<std::string> domFactory = Arabica::SimpleDOM::DOMImplementation<std::string>::getDOMImplementation();
@@ -1280,7 +1280,7 @@ void InterpreterImpl::executeContent(const Arabica::DOM::Node<std::string>& cont
}
void InterpreterImpl::returnDoneEvent(const Arabica::DOM::Node<std::string>& state) {
- std::cout << state << std::endl;
+// std::cout << state << std::endl;
if (_parentQueue != NULL) {
Event done;
done.name = "done.invoke." + _sessionId;