| 490 | } |
| 491 | |
| 492 | void das_module_bind_enumeration ( das_module * mod, das_enumeration * en ) { |
| 493 | ((Module *)mod)->addEnumeration((Enumeration *)en); |
| 494 | } |
| 495 | |
| 496 | das_structure * das_structure_make ( das_module_group * lib, const char * name, const char * cppname, int sz, int al ) { |
| 497 | auto st = new CStructureAnnotation(name,cppname,(ModuleLibrary *)lib); |
no test coverage detected