diff options
author | Stefan Radomski <github@mintwerk.de> | 2018-03-20 09:15:44 (GMT) |
---|---|---|
committer | Stefan Radomski <github@mintwerk.de> | 2018-03-20 09:15:44 (GMT) |
commit | 13faf5337e2d144b530e5b0bcf07480ef29471ec (patch) | |
tree | 5583a58a528c25a89b6024d0c8918c4410c42fe0 /test/src | |
parent | 008cca1a15ac9178c57de77d2f6699d9de3088cb (diff) | |
download | uscxml-13faf5337e2d144b530e5b0bcf07480ef29471ec.zip uscxml-13faf5337e2d144b530e5b0bcf07480ef29471ec.tar.gz uscxml-13faf5337e2d144b530e5b0bcf07480ef29471ec.tar.bz2 |
Reduced xerces deps and new transition callback
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/test-stress.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/src/test-stress.cpp b/test/src/test-stress.cpp index d0c15fd..a220387 100644 --- a/test/src/test-stress.cpp +++ b/test/src/test-stress.cpp @@ -19,7 +19,9 @@ int startedAt; int lastTransitionAt; class StatusMonitor : public uscxml::InterpreterMonitor { - void beforeTakingTransition(const std::string& sessionId, const XERCESC_NS::DOMElement* transition) { + void beforeTakingTransition(const std::string& sessionId, + const std::string& targetList, + const XERCESC_NS::DOMElement* transition) { lastTransitionAt = time(NULL); } |