blob: 96df436648d03ff4b93a68c30969936fafd09a8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// main.m
// SmartDeviceLink-iOS
//
// Created by Joel Fischer on 1/26/15.
// Copyright (c) 2015 smartdevicelink. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
|