splited InitDependentModules

This commit is contained in:
2024-12-21 17:25:30 +08:00
parent bd9e587691
commit 2516e9cfc1
5 changed files with 45 additions and 21 deletions

View File

@@ -50,6 +50,12 @@ public:
GraphModule *gm=new T(gmm,dgm_map);
if(!gm->InitDependentModules(gmm))
{
delete gm;
return(nullptr);
}
if(!gm->Init())
{
delete gm;