mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
939b3002d1
* #1086 append runtime allocations when sie is requested instead of initialization * #1088 change sie error to warning and improve warning message * #1089 lowercase powertools in centOS 8 config closes #1086 closes #1088 closes #1089
36 lines
743 B
C++
36 lines
743 B
C++
|
|
#include "trick/Sie.hh"
|
|
#include "trick/sie_c_intf.h"
|
|
|
|
extern Trick::Sie * the_sie ;
|
|
|
|
extern "C" void sie_print_xml(void) {
|
|
if ( the_sie != NULL ) {
|
|
the_sie->sie_print_xml() ;
|
|
}
|
|
}
|
|
|
|
extern "C" void sie_class_attr_map_print_xml(void) {
|
|
if ( the_sie != NULL ) {
|
|
the_sie->class_attr_map_print_xml() ;
|
|
}
|
|
}
|
|
|
|
extern "C" void sie_enum_attr_map_print_xml(void) {
|
|
if ( the_sie != NULL ) {
|
|
the_sie->enum_attr_map_print_xml() ;
|
|
}
|
|
}
|
|
|
|
extern "C" void sie_top_level_objects_print_xml(void) {
|
|
if ( the_sie != NULL ) {
|
|
the_sie->top_level_objects_print_xml() ;
|
|
}
|
|
}
|
|
|
|
extern "C" void sie_append_runtime_objs(void) {
|
|
if ( the_sie != NULL ) {
|
|
the_sie->sie_append_runtime_objs() ;
|
|
}
|
|
}
|