forked from mirrors/linphone-iphone
18 lines
295 B
Objective-C
18 lines
295 B
Objective-C
//
|
|
// main.m
|
|
// tester
|
|
//
|
|
// Created by guillaume on 28/02/2014.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "TesterAppDelegate.h"
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([TesterAppDelegate class]));
|
|
}
|
|
}
|