1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Added missing JUCE_API keywords

This commit is contained in:
hogliux 2016-09-12 12:02:47 +01:00
parent ff40b46bf2
commit c67c1d4ef9
3 changed files with 5 additions and 5 deletions

View file

@ -34,8 +34,8 @@
getNextAudioBlock(). The base class provides a basic AudioDeviceManager object
and runs audio through the default output device.
*/
class AudioAppComponent : public Component,
public AudioSource
class JUCE_API AudioAppComponent : public Component,
public AudioSource
{
public:
AudioAppComponent();

View file

@ -40,8 +40,8 @@
real-world app that requires more powerful waveform display, you'll probably want to
create your own component instead.
*/
class AudioVisualiserComponent : public Component,
private Timer
class JUCE_API AudioVisualiserComponent : public Component,
private Timer
{
public:
/** Creates a visualiser with the given number of channels. */

View file

@ -42,7 +42,7 @@
supported.
*/
class BluetoothMidiDevicePairingDialogue
class JUCE_API BluetoothMidiDevicePairingDialogue
{
public: