mirror of
https://github.com/AxioDL/amuse.git
synced 2025-05-13 19:01:34 +00:00
24 lines
482 B
C++
24 lines
482 B
C++
#pragma once
|
|
|
|
#import <CoreAudioKit/CoreAudioKit.h>
|
|
#import "AudioGroupFilePresenter.hpp"
|
|
|
|
@class AmuseAudioUnit;
|
|
|
|
@interface GroupBrowserDelegate : NSObject <NSBrowserDelegate>
|
|
{
|
|
AmuseAudioUnit* m_audioUnit;
|
|
}
|
|
- (id)initWithAudioUnit:(AmuseAudioUnit*)au;
|
|
@end
|
|
|
|
@interface AudioUnitViewController : AUViewController <AUAudioUnitFactory>
|
|
{
|
|
@public
|
|
AmuseAudioUnit* m_audioUnit;
|
|
IBOutlet NSBrowser* m_groupBrowser;
|
|
GroupBrowserDelegate* m_groupBrowserDelegate;
|
|
}
|
|
@end
|
|
|