iPlug2 - C++ Audio Plug-in Framework
Loading...
Searching...
No Matches
main.m
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#import <UIKit/UIKit.h>
12#import "AppDelegate.h"
13
14int main(int argc, char * argv[])
15{
16 @autoreleasepool {
17 return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
18 }
19}