mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 20:24:39 +08:00
18 lines
358 B
Objective-C
18 lines
358 B
Objective-C
//
|
|
// main.m
|
|
// TestDocs3
|
|
//
|
|
// Created by naceka on 24.04.12.
|
|
// Copyright 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
int retVal = UIApplicationMain(argc, argv, nil, nil);
|
|
[pool release];
|
|
return retVal;
|
|
}
|