1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Add support for OSC Types T,F and I

This commit is contained in:
Ben Kuper 2022-02-05 17:30:25 +01:00
parent 6575d24a81
commit cb79e18b65
8 changed files with 64 additions and 16 deletions

View file

@ -119,6 +119,11 @@ public:
void clear();
//==============================================================================
/** Creates a new OSCArgument of type T or F depending on the given value,
and adds it to the OSCMessage object.
*/
void addBool(bool value);
/** Creates a new OSCArgument of type int32 with the given value,
and adds it to the OSCMessage object.
*/