Skip to content
Snippets Groups Projects
Commit 75270b02 authored by Antoine Regimbeau's avatar Antoine Regimbeau
Browse files

ENH: add a trace to get RefCount of ProcessObject

parent a8bb2a92
No related branches found
No related tags found
No related merge requests found
......@@ -650,6 +650,12 @@ int Application::ExecuteAndWriteOutput()
this->AfterExecuteAndWriteOutputs();
m_Chrono.Stop();
for ( auto filter : m_Filters )
{
std::cout<<"For filter : "<<filter->GetNameOfClass()<<
" count : "<<filter->GetReferenceCount()<<std::endl;
}
m_Filters.clear();
return status;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment