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

Class DateTime

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

Encapsulated time_t, used to facilitate overloading the ExpressionValue constructor

Source from the content-addressed store, hash-verified

38
39// Encapsulated time_t, used to facilitate overloading the ExpressionValue constructor
40struct DateTime
41{
42 explicit DateTime(time_t t) noexcept : tim(t) { }
43
44 time_t tim;
45};
46
47// Struct used to hold the expressions with polymorphic types
48struct ExpressionValue final

Callers 1

PrintMonitor.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected