34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file contains the basic framework code for a JUCE plugin editor.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <JuceHeader.h>
|
|
#include "PluginProcessor.h"
|
|
|
|
//==============================================================================
|
|
/**
|
|
*/
|
|
class ReverbAudioProcessorEditor : public juce::AudioProcessorEditor
|
|
{
|
|
public:
|
|
ReverbAudioProcessorEditor (ReverbAudioProcessor&);
|
|
~ReverbAudioProcessorEditor() override;
|
|
|
|
//==============================================================================
|
|
void paint (juce::Graphics&) override;
|
|
void resized() override;
|
|
|
|
private:
|
|
// This reference is provided as a quick way for your editor to
|
|
// access the processor object that created it.
|
|
ReverbAudioProcessor& audioProcessor;
|
|
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ReverbAudioProcessorEditor)
|
|
};
|