summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Factory.cpp')
-rw-r--r--src/uscxml/Factory.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/uscxml/Factory.cpp b/src/uscxml/Factory.cpp
index 3bad07f..ce09a27 100644
--- a/src/uscxml/Factory.cpp
+++ b/src/uscxml/Factory.cpp
@@ -58,6 +58,7 @@
# include "uscxml/plugins/element/postpone/PostponeElement.h"
# include "uscxml/plugins/ioprocessor/comet/CometIOProcessor.h"
+# include "uscxml/plugins/invoker/vxml/VoiceXMLInvoker.h"
# endif
@@ -68,7 +69,6 @@
# if (defined UMUNDO_FOUND && defined PROTOBUF_FOUND)
# include "uscxml/plugins/invoker/umundo/UmundoInvoker.h"
-//# include "uscxml/plugins/invoker/vxml/VoiceXMLInvoker.h"
#endif
# ifdef OPENSCENEGRAPH_FOUND
@@ -370,6 +370,11 @@ void Factory::registerPlugins() {
registerInvoker(invoker);
}
{
+ VoiceXMLInvoker* invoker = new VoiceXMLInvoker();
+ registerInvoker(invoker);
+ }
+
+ {
FetchElement* element = new FetchElement();
registerExecutableContent(element);
}