29const OSCType OSCTypes::int32 =
'i';
30const OSCType OSCTypes::float32 =
'f';
31const OSCType OSCTypes::string =
's';
32const OSCType OSCTypes::blob =
'b';
33const OSCType OSCTypes::colour =
'r';
35uint32 OSCColour::toInt32()
const
40OSCColour OSCColour::fromInt32 (
uint32 c)
42 return { (
uint8) (c >> 24),
static constexpr uint16 makeInt(uint8 leastSig, uint8 mostSig) noexcept
Constructs a 16-bit integer from its constituent bytes, in order of significance.
char OSCType
The type used for OSC type tags.
unsigned int uint32
A platform-independent 32-bit unsigned integer type.
unsigned char uint8
A platform-independent 8-bit unsigned integer type.