mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
16 lines
333 B
Objective-C
16 lines
333 B
Objective-C
//
|
|
// main.m
|
|
// MS2
|
|
//
|
|
// Created by guillaume on 06/05/2015.
|
|
// Copyright (c) 2015 Belldonne Communications. 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]));
|
|
}
|
|
}
|