MCPcopy Create free account
hub / github.com/Duet3D/RepRapFirmware / SetNull

Method SetNull

src/ObjectModel/ObjectModel.h:152–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

150 void SetStringHandle(StringHandle sh) noexcept { Release(); type = (uint32_t)TypeCode::HeapString; shVal = sh; }
151 void SetArrayHandle(ArrayHandle ah) noexcept { Release(); type = (uint32_t)TypeCode::HeapArray; ahVal = ah; }
152 void SetNull(std::nullptr_t dummy) noexcept { Release(); type = (uint32_t)TypeCode::None; }
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; }

Callers 4

DHCP_runFunction · 0.80
cmdDnetinfMethod · 0.80
THROWSFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected