| 6 | using namespace icinga; |
| 7 | |
| 8 | DbValue::DbValue(DbValueType type, Value value) |
| 9 | : m_Type(type), m_Value(std::move(value)) |
| 10 | { } |
| 11 | |
| 12 | Value DbValue::FromTimestamp(const Value& ts) |
| 13 | { |
nothing calls this directly
no outgoing calls
no test coverage detected