mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-15 00:24:19 +00:00
40 lines
1.3 KiB
C
40 lines
1.3 KiB
C
/*
|
|
==============================================================================
|
|
|
|
This file was auto-generated!
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
%%include_juce%%
|
|
|
|
//==============================================================================
|
|
/*
|
|
This component lives inside our window, and this is where you should put all
|
|
your controls and content.
|
|
*/
|
|
class %%content_component_class%% : public AudioAppComponent
|
|
{
|
|
public:
|
|
//==============================================================================
|
|
%%content_component_class%%();
|
|
~%%content_component_class%%();
|
|
|
|
//==============================================================================
|
|
void prepareToPlay (int samplesPerBlockExpected, double sampleRate) override;
|
|
void getNextAudioBlock (const AudioSourceChannelInfo& bufferToFill) override;
|
|
void releaseResources() override;
|
|
|
|
//==============================================================================
|
|
void paint (Graphics& g) override;
|
|
void resized() override;
|
|
|
|
private:
|
|
//==============================================================================
|
|
// Your private member variables go here...
|
|
|
|
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%content_component_class%%)
|
|
};
|