diff options
author | rlm <rlm@techsat.com> | 2019-09-11 11:46:48 (GMT) |
---|---|---|
committer | rlm <rlm@techsat.com> | 2019-09-11 11:46:48 (GMT) |
commit | 52e69b435d5213f37473d54767141d1a3db7f345 (patch) | |
tree | 9c3ce006829ffbc3dc902f370fc59ab047c96788 /src | |
parent | e46492eb0ec51ba3e50b6243282765336b3a90f7 (diff) | |
download | uscxml-52e69b435d5213f37473d54767141d1a3db7f345.zip uscxml-52e69b435d5213f37473d54767141d1a3db7f345.tar.gz uscxml-52e69b435d5213f37473d54767141d1a3db7f345.tar.bz2 |
:Jira: ADSVHTNG-1055 - fixed incomplete tascxml:set command definition in c generationrefs/changes/21/8721/1
Change-Id: I2f6fff2e31d99b0a4fde3525822f86cdea086aa4
Diffstat (limited to 'src')
-rwxr-xr-x | src/uscxml/transform/ChartToC.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/uscxml/transform/ChartToC.cpp b/src/uscxml/transform/ChartToC.cpp index 75aaf8b..475e423 100755 --- a/src/uscxml/transform/ChartToC.cpp +++ b/src/uscxml/transform/ChartToC.cpp @@ -711,6 +711,7 @@ void ChartToC::writeTypes(std::ostream& stream) { stream << "typedef struct uscxml_elem_donedata uscxml_elem_donedata;" << std::endl; stream << "typedef struct uscxml_elem_foreach uscxml_elem_foreach;" << std::endl; stream << "typedef struct uscxml_elem_tascxml_result uscxml_elem_tascxml_result;" << std::endl; + stream << "typedef struct uscxml_elem_tascxml_set uscxml_elem_tascxml_set;" << std::endl; stream << std::endl; stream << "typedef void* (*dequeue_internal_t)(const uscxml_ctx* ctx);" << std::endl; @@ -735,6 +736,7 @@ void ChartToC::writeTypes(std::ostream& stream) { stream << "typedef int (*exec_content_finalize_t)(const uscxml_ctx* ctx, const uscxml_elem_invoke* invoker, const void* event);" << std::endl; stream << "typedef int (*exec_content_script_t)(const uscxml_ctx* ctx, const char* src, const char* content);" << std::endl; stream << "typedef int (*exec_content_tascxml_result_t)(const uscxml_ctx* ctx, const uscxml_elem_tascxml_result* result);" << std::endl; + stream << "typedef int (*exec_content_tascxml_set_t)(const uscxml_ctx* ctx, const uscxml_elem_tascxml_set* set);" << std::endl; stream << std::endl; stream << "/**" << std::endl; @@ -941,6 +943,7 @@ void ChartToC::writeTypes(std::ostream& stream) { stream << " exec_content_cancel_t exec_content_cancel;" << std::endl; stream << " exec_content_script_t exec_content_script;" << std::endl; stream << " exec_content_tascxml_result_t exec_content_tascxml_result;" << std::endl; + stream << " exec_content_tascxml_set_t exec_content_tascxml_set;" << std::endl; stream << std::endl; stream << " invoke_t invoke;" << std::endl; stream << "};" << std::endl; |