github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/clients/ios-objc/photobackup/main.m (about) 1 // 2 // main.m 3 // photobackup 4 // 5 // Created by Nick O'Neill on 10/20/13. 6 // Copyright (c) 2013 The Camlistore Authors. All rights reserved. 7 // 8 9 #import <UIKit/UIKit.h> 10 11 #import "LAAppDelegate.h" 12 13 int main(int argc, char * argv[]) 14 { 15 @autoreleasepool { 16 return UIApplicationMain(argc, argv, nil, NSStringFromClass([LAAppDelegate class])); 17 } 18 }