diff options
author | Stefan Radomski <github@mintwerk.de> | 2017-05-22 19:17:48 (GMT) |
---|---|---|
committer | Stefan Radomski <github@mintwerk.de> | 2017-05-22 19:17:48 (GMT) |
commit | 9a70ea561fecf533451f08ee3a490e2a5ba21372 (patch) | |
tree | 6ca253c6aa8640d50ca93d104a19421ec8ec2e3f /src/uscxml/plugins/ExecutableContentImpl.h | |
parent | ecdefbdbb55c800f9ceed67f77592b5d64927225 (diff) | |
download | uscxml-9a70ea561fecf533451f08ee3a490e2a5ba21372.zip uscxml-9a70ea561fecf533451f08ee3a490e2a5ba21372.tar.gz uscxml-9a70ea561fecf533451f08ee3a490e2a5ba21372.tar.bz2 |
Fixed issue 135 custom executable content
Diffstat (limited to 'src/uscxml/plugins/ExecutableContentImpl.h')
-rw-r--r-- | src/uscxml/plugins/ExecutableContentImpl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/uscxml/plugins/ExecutableContentImpl.h b/src/uscxml/plugins/ExecutableContentImpl.h index f186e84..81aedf1 100644 --- a/src/uscxml/plugins/ExecutableContentImpl.h +++ b/src/uscxml/plugins/ExecutableContentImpl.h @@ -57,7 +57,9 @@ public: } virtual void enterElement(XERCESC_NS::DOMElement* node) = 0; ///< Invoked when entering the element as part of evaluating executable content. virtual void exitElement(XERCESC_NS::DOMElement* node) = 0; ///< Invoked when exiting the element as part of evaluating executable content. - virtual bool processChildren() = 0; ///< Whether or not the interpreter should process this elements children. + virtual bool processChildren() { + return false; ///< Whether or not the interpreter should process this elements children. + } protected: InterpreterImpl* _interpreter; |