iPlug2 - C++ Audio Plug-in Framework
Loading...
Searching...
No Matches
IPlugAUViewController.h
1 /*
2 ==============================================================================
3
4 This file is part of the iPlug 2 library. Copyright (C) the iPlug 2 developers.
5
6 See LICENSE.txt for more info.
7
8 ==============================================================================
9*/
10
11#ifndef _IPLUGAUVIEWCONTROLLER_
12#define _IPLUGAUVIEWCONTROLLER_
13
16#import <CoreAudioKit/AUViewController.h>
17
18@interface IPLUG_AUVIEWCONTROLLER : AUViewController <AUAudioUnitFactory>
19
20@property (nonatomic, retain) AUAudioUnit* audioUnit;
21- (void) setAudioUnit:(AUAudioUnit*) audioUnit;
22- (void) audioUnitInitialized;
23- (AUAudioUnit*) getAudioUnit;
24@end
25
26#endif /* _IPLUGAUVIEWCONTROLLER_ */