<<std::endl);
} // if
+
+
// Shows the window if the black box has one
this->bbShowWindow();
-
+
+auto start2 = std::chrono::high_resolution_clock::now();
bbtkBlackBoxDebugMessage("process",3,
"<= BlackBox::bbRecursiveExecute()"
<<std::endl);
-
bbSetExecuting(false);
bbGlobalSetSomeBoxExecuting(wasExecuting);
+auto stop2 = std::chrono::high_resolution_clock::now();
+auto duration2 = std::chrono::duration_cast<std::chrono::microseconds>(stop2 - start2);
+printf("EED BlackBox::bbRecursiveExecute bbProcess2 time= %ld %s \n", duration2.count() , bbGetFullName().c_str() );
+
return;
}
//=========================================================================