2
0
MasterPassword/platform-darwin/Source/iOS/main.m

17 lines
335 B
Mathematica
Raw Normal View History

2011-11-30 21:42:40 +00:00
//
// main.m
2012-02-03 07:45:09 +00:00
// MasterPassword
2011-11-30 21:42:40 +00:00
//
// Created by Maarten Billemont on 24/11/11.
// Copyright (c) 2011 Lyndir. All rights reserved.
//
#import "MPiOSAppDelegate.h"
2011-11-30 21:42:40 +00:00
2012-06-08 21:46:13 +00:00
int main(int argc, char *argv[]) {
2011-11-30 21:42:40 +00:00
@autoreleasepool {
return UIApplicationMain( argc, argv, nil, NSStringFromClass( [MPiOSAppDelegate class] ) );
2011-11-30 21:42:40 +00:00
}
}