MCPcopy Create free account
hub / github.com/OpenKinect/libfreenect2 / CommandData

Class CommandData

include/internal/libfreenect2/protocol/command.h:62–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60
61template<int NParam>
62struct CommandData
63{
64 uint32_t magic;
65 uint32_t sequence;
66 uint32_t max_response_length;
67 uint32_t command;
68 uint32_t reserved0;
69 uint32_t parameters[NParam];
70
71 CommandData()
72 {
73 for(int i = 0; i < NParam; ++i)
74 parameters[i] = 0;
75 }
76};
77
78template<>
79struct CommandData<0>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected