/// Main processing method of the box.
void BlackBox::bbExecute(bool force)
{
+
bbtkBlackBoxDebugMessage("process",2,
"=> BlackBox::bbExecute("<<(int)force<<")"
<<std::endl);
-
+
+ printf("-- EED BlackBox::bbExecute Start \n");
+ bbGlobalSetInConstruction(true);
+
// If already executing : return
/*
if (bbGetExecuting())
{
bbLetRecursiveExecuteManualMode = false;
}
-
+
+ printf("-- EED BlackBox::bbExecute End \n");
+ bbGlobalSetInConstruction(false);
bbtkBlackBoxDebugMessage("process",2,
"<= BlackBox::bbExecute()"
<<std::endl);
+
+
}
//=========================================================================
}
//=========================================================================
-
+//EED2025-01-15
bool BlackBox::bbGlobalGetInConstruction()
{
+// printf("EED BlackBox::bbGlobalGetInConstruction \n");
return bbmgInConstruction;
}
void BlackBox::bbGlobalSetInConstruction(bool b)
{
+ printf("EED BlackBox::bbGlobalSetInConstruction --)-)--)---)-)-)-)--)--)-\n");
bbmgInConstruction = b;
}
bbtkBlackBoxDebugMessage("process",2,
"**> ComplexBlackBox::bbExecute()"
<<std::endl);
-
- bbGlobalSetInConstruction(true);
-
Wx::BusyCursor wait;
-
if (mExecutionList.size() != 0)
{
-
std::vector<std::string>::const_iterator i;
for (i=mExecutionList.begin();
i!=mExecutionList.end();
i->second->bbExecute(force);
} // for i
}
-
- bbGlobalSetInConstruction(false);
-
bbtkBlackBoxDebugMessage("process",2,
"<** ComplexBlackBox::bbExecute()"
<<std::endl);
-
}
//==================================================================
<<std::endl);
mExecutionList.push_back( name );
-
-
}
//==================================================================