Create application/directory for subdir, if metadata or permissions are applied.
[pithos-ios] / main.m
1     //
2 //  main.m
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 9/30/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 #import <UIKit/UIKit.h>
10
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;
17 }