2015-02-26 09:02:31 -06:00
|
|
|
|
2015-06-01 10:28:29 -05:00
|
|
|
#include "trick/Sie.hh"
|
|
|
|
#include "trick/sie_c_intf.h"
|
2015-02-26 09:02:31 -06:00
|
|
|
|
|
|
|
extern Trick::Sie * the_sie ;
|
|
|
|
|
|
|
|
extern "C" void sie_print_xml() {
|
|
|
|
if ( the_sie != NULL ) {
|
|
|
|
the_sie->sie_print_xml() ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void sie_class_attr_map_print_xml() {
|
|
|
|
if ( the_sie != NULL ) {
|
|
|
|
the_sie->class_attr_map_print_xml() ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void sie_enum_attr_map_print_xml() {
|
|
|
|
if ( the_sie != NULL ) {
|
|
|
|
the_sie->enum_attr_map_print_xml() ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void sie_top_level_objects_print_xml() {
|
|
|
|
if ( the_sie != NULL ) {
|
|
|
|
the_sie->top_level_objects_print_xml() ;
|
|
|
|
}
|
|
|
|
}
|