mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 03:58:08 +00:00
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]));
|
|
}
|
|
}
|