mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
OSC: Update docs
This commit is contained in:
parent
d31b85ef00
commit
f3a69664d6
2 changed files with 3 additions and 3 deletions
|
|
@ -36,11 +36,11 @@ namespace juce
|
|||
Only a subset of ASCII characters are allowed in OSC addresses; see
|
||||
OpenSoundControl 1.0 specification for details.
|
||||
|
||||
OSC addresses can be used to register OSCMessageListener objects to an
|
||||
OSC addresses can be used to register ListenerWithOSCAddress objects to an
|
||||
OSCReceiver if you wish them to only listen to certain messages with
|
||||
matching OSC address patterns.
|
||||
|
||||
@see OSCMessageListener, OSCAddressPattern, OSCMessage
|
||||
@see OSCReceiver, OSCAddressPattern, OSCMessage
|
||||
|
||||
@tags{OSC}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ public:
|
|||
/** Returns whether the type of the OSCArgument is blob. */
|
||||
bool isBlob() const noexcept { return type == OSCTypes::blob; }
|
||||
|
||||
/** Returns whether the type of the OSCArgument is blob. */
|
||||
/** Returns whether the type of the OSCArgument is colour. */
|
||||
bool isColour() const noexcept { return type == OSCTypes::colour; }
|
||||
|
||||
/** Returns the value of the OSCArgument as an int32.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue