|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
An OSC bundle element. More...
#include "juce_OSCBundle.h"
Public Member Functions | |
| Element (OSCMessage message) | |
| Constructs an OSCBundle Element from an OSCMessage. | |
| Element (OSCBundle bundle) | |
| Constructs an OSCBundle Element from an OSCBundle. | |
| Element (const Element &other) | |
| Copy constructor. | |
| ~Element () | |
| Destructor. | |
| bool | isMessage () const noexcept |
| Returns true if the OSCBundle element is an OSCMessage. | |
| bool | isBundle () const noexcept |
| Returns true if the OSCBundle element is an OSCBundle. | |
| const OSCMessage & | getMessage () const |
| Returns a reference to the contained OSCMessage. | |
| const OSCBundle & | getBundle () const |
| Returns a reference to the contained OSCBundle. | |
An OSC bundle element.
An OSCBundle Element contains either one OSCMessage or one OSCBundle.
Definition at line 66 of file juce_OSCBundle.h.
| juce::OSCBundle::Element::Element | ( | OSCMessage | message | ) |
Constructs an OSCBundle Element from an OSCMessage.
Definition at line 41 of file juce_OSCBundle.cpp.
| juce::OSCBundle::Element::Element | ( | OSCBundle | bundle | ) |
Constructs an OSCBundle Element from an OSCBundle.
Definition at line 46 of file juce_OSCBundle.cpp.
Copy constructor.
Definition at line 52 of file juce_OSCBundle.cpp.
| juce::OSCBundle::Element::~Element | ( | ) |
Destructor.
Definition at line 67 of file juce_OSCBundle.cpp.
Returns a reference to the contained OSCBundle.
If the OSCBundle element is not an OSCBundle, behaviour is undefined.
Definition at line 98 of file juce_OSCBundle.cpp.
| const OSCMessage & juce::OSCBundle::Element::getMessage | ( | ) | const |
Returns a reference to the contained OSCMessage.
If the OSCBundle element is not an OSCMessage, behaviour is undefined.
Definition at line 85 of file juce_OSCBundle.cpp.
|
noexcept |
Returns true if the OSCBundle element is an OSCBundle.
Definition at line 79 of file juce_OSCBundle.cpp.
|
noexcept |
Returns true if the OSCBundle element is an OSCMessage.
Definition at line 74 of file juce_OSCBundle.cpp.