#include "tmassert.h" #include "tmtrace.h" #include "tmdisclosureframework.h" TMError tm_disclosureframework_lookup_model(TMDisclosureFramework self,TM tm, const char *name, TMModel *mp) { TMError e; TM_ENTER; assert(self); assert(name); assert(mp); *mp = NULL; if( (e = self->lookup_model(self,tm,name,mp)) != TM_OK) TM_RETURN(e); TM_RETURN(TM_OK); }