mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Normalised some divider comments
This commit is contained in:
parent
c64fcd72e9
commit
b5907fa90d
56 changed files with 233 additions and 233 deletions
|
|
@ -331,7 +331,7 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
//==========================================================================
|
||||
//==============================================================================
|
||||
void expectContainsRPN (const MidiBuffer& midiBuffer,
|
||||
int channel,
|
||||
int parameterNumber,
|
||||
|
|
@ -343,7 +343,7 @@ private:
|
|||
expectContainsRPN (midiBuffer, expected);
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
//==============================================================================
|
||||
void expectContainsRPN (const MidiBuffer& midiBuffer, MidiRPNMessage expected)
|
||||
{
|
||||
MidiBuffer::Iterator iter (midiBuffer);
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
#define JUCE_MIDIRPNDETECTOR_H_INCLUDED
|
||||
|
||||
|
||||
//==========================================================================
|
||||
//==============================================================================
|
||||
/** Represents a MIDI RPN (registered parameter number) or NRPN (non-registered
|
||||
parameter number) message.
|
||||
*/
|
||||
|
|
@ -77,7 +77,7 @@ public:
|
|||
*/
|
||||
void reset() noexcept;
|
||||
|
||||
//==========================================================================
|
||||
//==============================================================================
|
||||
/** Takes the next in a stream of incoming MIDI CC messages and returns true
|
||||
if it forms the last of a sequence that makes an RPN or NPRN.
|
||||
|
||||
|
|
@ -91,7 +91,7 @@ public:
|
|||
MidiRPNMessage& result) noexcept;
|
||||
|
||||
private:
|
||||
//==========================================================================
|
||||
//==============================================================================
|
||||
struct ChannelState
|
||||
{
|
||||
ChannelState() noexcept;
|
||||
|
|
@ -104,7 +104,7 @@ private:
|
|||
bool isNRPN;
|
||||
};
|
||||
|
||||
//==========================================================================
|
||||
//==============================================================================
|
||||
ChannelState states[16];
|
||||
|
||||
JUCE_LEAK_DETECTOR (MidiRPNDetector)
|
||||
|
|
@ -120,11 +120,11 @@ private:
|
|||
class JUCE_API MidiRPNGenerator
|
||||
{
|
||||
public:
|
||||
//==========================================================================
|
||||
//==============================================================================
|
||||
/** Generates a MIDI sequence representing the given RPN or NRPN message. */
|
||||
static MidiBuffer generate (MidiRPNMessage message);
|
||||
|
||||
//==========================================================================
|
||||
//==============================================================================
|
||||
/** Generates a MIDI sequence representing an RPN or NRPN message with the
|
||||
given parameters.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue