summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter/FastMicroStep.cpp
diff options
context:
space:
mode:
authorjuehv <heuschkel@tk.tu-darmstadt.de>2016-12-08 13:31:47 (GMT)
committerjuehv <heuschkel@tk.tu-darmstadt.de>2016-12-08 13:31:47 (GMT)
commit416d85a93e8e42c81b8fef978f4b12b4850d0676 (patch)
treebc5e2ae3c69e6dcb9e77c3c7856c8796a6496d65 /src/uscxml/interpreter/FastMicroStep.cpp
parent08a6a153a3bd6b9984936beaad56e85b5fcd63a0 (diff)
parent89947b31a1daf4fea62b1f5055df8ef8ff8838ec (diff)
downloaduscxml-416d85a93e8e42c81b8fef978f4b12b4850d0676.zip
uscxml-416d85a93e8e42c81b8fef978f4b12b4850d0676.tar.gz
uscxml-416d85a93e8e42c81b8fef978f4b12b4850d0676.tar.bz2
Merge branch 'master' of github.com:tklab-tud/uscxml
Diffstat (limited to 'src/uscxml/interpreter/FastMicroStep.cpp')
-rw-r--r--src/uscxml/interpreter/FastMicroStep.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/uscxml/interpreter/FastMicroStep.cpp b/src/uscxml/interpreter/FastMicroStep.cpp
index b0fda1f..90b93ee 100644
--- a/src/uscxml/interpreter/FastMicroStep.cpp
+++ b/src/uscxml/interpreter/FastMicroStep.cpp
@@ -89,6 +89,10 @@ FastMicroStep::~FastMicroStep() {
}
}
+std::shared_ptr<MicroStepImpl> FastMicroStep::create(MicroStepCallbacks* callbacks) {
+ return std::shared_ptr<MicroStepImpl>(new FastMicroStep(callbacks));
+}
+
void FastMicroStep::resortStates(DOMElement* element, const X& xmlPrefix) {
/**
@@ -1189,4 +1193,4 @@ bool FastMicroStep::hasLegalConfiguration() {
}
#endif
-} \ No newline at end of file
+}