MCPcopy Create free account
hub / github.com/MITK/MITK / IsTransient

Method IsTransient

Modules/Core/src/DataManagement/mitkPropertyTransience.cpp:31–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31bool mitk::PropertyTransience::IsTransient(const BaseData *data, const std::string &propertyName) const
32{
33 for (const auto &matcher : m_Matchers)
34 {
35 if (matcher.first == propertyName && matcher.second(data))
36 return true;
37 }
38
39 return false;
40}
41
42mitk::IPropertyTransience *mitk::CreateTestInstancePropertyTransience()
43{

Calls

no outgoing calls