forked from vfr/Reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.m
More file actions
23 lines (21 loc) · 699 Bytes
/
main.m
File metadata and controls
23 lines (21 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// main.m
// Reader
//
// Created by Julius Oklamcak on 2011-07-01.
// Copyright © 2011 Julius Oklamcak. All rights reserved.
//
// This work is being made available under a Creative Commons Attribution license:
// «http://creativecommons.org/licenses/by/3.0/»
// You are free to use this work and any derivatives of this work in personal and/or
// commercial products and projects as long as the above copyright is maintained and
// the original author is attributed.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [NSAutoreleasePool new];
int retVal = UIApplicationMain(argc, argv, nil, @"ReaderAppDelegate");
[pool release];
return retVal;
}