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

Add clarification in documentation of juce_AudioAppComponent.h

This commit is contained in:
Noah Dayan 2017-12-04 10:17:52 +00:00
parent c1a3aa38f8
commit 731dfdac3a

View file

@ -30,10 +30,18 @@ namespace juce
//==============================================================================
/**
A base class for writing audio apps that stream from the audio i/o devices.
Conveniently combines a Component with an AudioSource to provide a starting
point for your audio applications.
A subclass can inherit from this and implement just a few methods such as
getNextAudioBlock(). The base class provides a basic AudioDeviceManager object
and runs audio through the default output device.
An application should only create one global instance of this object and multiple
classes should not inherit from this.
This class should not be inherited when creating a plug-in as the host will
handle audio streams from hardware devices.
*/
class JUCE_API AudioAppComponent : public Component,
public AudioSource