| 31 | INITIALIZE_ONCE(&DbObject::StaticInitialize); |
| 32 | |
| 33 | DbObject::DbObject(intrusive_ptr<DbType> type, String name1, String name2) |
| 34 | : m_Name1(std::move(name1)), m_Name2(std::move(name2)), m_Type(std::move(type)), m_LastConfigUpdate(0), m_LastStatusUpdate(0) |
| 35 | { } |
| 36 | |
| 37 | void DbObject::StaticInitialize() |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected