1
0
Fork 0
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:
reuk 2021-12-08 14:13:44 +00:00
parent bf32f0dba9
commit d5099ecf4d
17 changed files with 162 additions and 94 deletions

View file

@ -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