class library: Spawner - don't access PriorityQueue-array
[supercollider.git] / editors / scapp / iPhone / isclang_main.m
blob9f6f8be068fb3513d1b346a7113a1e6cee510811
1 //
2 //  main.m
3 //  isclang
4 //
5 //  Created by Axel Balley on 25/10/08.
6 //  Copyright __MyCompanyName__ 2008. All rights reserved.
7 //
9 #import <UIKit/UIKit.h>
11 int main(int argc, char *argv[]) {
12     
13     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
14     int retVal = UIApplicationMain(argc, argv, nil, nil);
15     [pool release];
16     return retVal;