mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Documentation: Add doxygen guards to UMP namespace
This commit is contained in:
parent
bf32f0dba9
commit
d5099ecf4d
17 changed files with 162 additions and 94 deletions
|
|
@ -20,12 +20,14 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef DOXYGEN
|
||||
|
||||
namespace juce
|
||||
{
|
||||
namespace universal_midi_packets
|
||||
{
|
||||
|
||||
/*
|
||||
/**
|
||||
A base class for classes which receive Universal MIDI Packets from an input.
|
||||
|
||||
@tags{Audio}
|
||||
|
|
@ -34,9 +36,11 @@ struct Receiver
|
|||
{
|
||||
virtual ~Receiver() noexcept = default;
|
||||
|
||||
/* This will be called each time a new packet is ready for processing. */
|
||||
/** This will be called each time a new packet is ready for processing. */
|
||||
virtual void packetReceived (const View& packet, double time) = 0;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue