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

Method Identifiable

Modules/Core/src/DataManagement/mitkIdentifiable.cpp:24–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22};
23
24mitk::Identifiable::Identifiable()
25 : m_Impl(new Impl)
26{
27 UIDGenerator generator;
28 m_Impl->uid = generator.GetUID();
29
30 std::ostringstream ss;
31 ss << static_cast<const void*>(this);
32 m_Impl->m_RuntimeUID = ss.str();
33}
34
35mitk::Identifiable::Identifiable(const UIDType &uid)
36 : m_Impl(new Impl)

Callers

nothing calls this directly

Calls 1

GetUIDMethod · 0.45

Tested by

no test coverage detected