summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.cpp
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-12 20:46:09 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-12 20:46:09 (GMT)
commitc938b229ca4ecc8ec3da68861f76b215ffa561c1 (patch)
tree9851aa1bb2c780031325a38181c890a811b5c1af /src/uscxml/Interpreter.cpp
parentee6de957bfc57b281e6de7cd3544eac0afd58ab0 (diff)
downloaduscxml-c938b229ca4ecc8ec3da68861f76b215ffa561c1.zip
uscxml-c938b229ca4ecc8ec3da68861f76b215ffa561c1.tar.gz
uscxml-c938b229ca4ecc8ec3da68861f76b215ffa561c1.tar.bz2
Removed unnecessary std::couts
Diffstat (limited to 'src/uscxml/Interpreter.cpp')
-rw-r--r--src/uscxml/Interpreter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/Interpreter.cpp b/src/uscxml/Interpreter.cpp
index b314d1a..27fd10b 100644
--- a/src/uscxml/Interpreter.cpp
+++ b/src/uscxml/Interpreter.cpp
@@ -412,12 +412,12 @@ void InterpreterImpl::normalize(Arabica::DOM::Element<std::string>& scxml) {
}
void InterpreterImpl::receiveInternal(const Event& event) {
- std::cout << _name << " receiveInternal: " << event.name << std::endl;
+// std::cout << _name << " receiveInternal: " << event.name << std::endl;
_internalQueue.push_back(event);
}
void InterpreterImpl::receive(const Event& event, bool toFront) {
- std::cout << _name << " receive: " << event.name << std::endl;
+// std::cout << _name << " receive: " << event.name << std::endl;
if (toFront) {
_externalQueue.push_front(event);
} else {