kopia lustrzana https://github.com/jameshball/osci-render
17 wiersze
428 B
C
17 wiersze
428 B
C
![]() |
#pragma once
|
||
|
#include <JuceHeader.h>
|
||
|
#include "AboutComponent.h"
|
||
|
#include "MainMenuBarModel.h"
|
||
|
|
||
|
|
||
|
class OscirenderAudioProcessorEditor;
|
||
|
class OscirenderAudioProcessor;
|
||
|
class OsciMainMenuBarModel : public MainMenuBarModel {
|
||
|
public:
|
||
|
OsciMainMenuBarModel(OscirenderAudioProcessor& p, OscirenderAudioProcessorEditor& editor);
|
||
|
|
||
|
private:
|
||
|
OscirenderAudioProcessor& audioProcessor;
|
||
|
OscirenderAudioProcessorEditor& editor;
|
||
|
};
|