| 10 | using namespace icinga; |
| 11 | |
| 12 | DbType::DbType(String name, String table, long tid, String idcolumn, DbType::ObjectFactory factory) |
| 13 | : m_Name(std::move(name)), m_Table(std::move(table)), m_TypeID(tid), m_IDColumn(std::move(idcolumn)), m_ObjectFactory(std::move(factory)) |
| 14 | { } |
| 15 | |
| 16 | String DbType::GetName() const |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected