linphone-iphone/tester/main.m
2014-03-05 14:16:01 +01:00

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]));
}
}