| 153 | void SetDateTime(time_t t) noexcept { Release(); type = (uint32_t)TypeCode::DateTime_tc; Set56BitValue(t); } |
| 154 | |
| 155 | void SetUnsigned(uint32_t u) noexcept { Release(); type = (uint32_t)TypeCode::Uint32; uVal = u; } |
| 156 | void SetDuration(uint32_t u) noexcept { Release(); type = (uint32_t)TypeCode::Duration; uVal = u; } |
| 157 | |
| 158 | // Store a 56-bit value |
no outgoing calls
no test coverage detected