iPhone/main.m
author Jens Alfke <jens@mooseyard.com>
Fri Jul 24 14:06:28 2009 -0700 (2009-07-24)
changeset 63 5e4855a592ee
parent 25 a4875607a3a0
permissions -rwxr-xr-x
* The BLIPConnection receivedRequest: delegate method now returns BOOL. If the method returns NO (or if the method isn't implemented in the delegate), that means it didn't handle the message at all; an error will be returned to the sender.
* If the connection closes unexpectedly due to an error, then the auto-generated responses to pending requests will contain that error. This makes it easier to display a meaningful error message in the handler for the request.
     1 /*
     2 
     3 File: main.m
     4 Abstract: Standard main file.
     5 
     6 Version: 1.7
     7 
     8 Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple Inc.
     9 ("Apple") in consideration of your agreement to the following terms, and your
    10 use, installation, modification or redistribution of this Apple software
    11 constitutes acceptance of these terms.  If you do not agree with these terms,
    12 please do not use, install, modify or redistribute this Apple software.
    13 
    14 In consideration of your agreement to abide by the following terms, and subject
    15 to these terms, Apple grants you a personal, non-exclusive license, under
    16 Apple's copyrights in this original Apple software (the "Apple Software"), to
    17 use, reproduce, modify and redistribute the Apple Software, with or without
    18 modifications, in source and/or binary forms; provided that if you redistribute
    19 the Apple Software in its entirety and without modifications, you must retain
    20 this notice and the following text and disclaimers in all such redistributions
    21 of the Apple Software.
    22 Neither the name, trademarks, service marks or logos of Apple Inc. may be used
    23 to endorse or promote products derived from the Apple Software without specific
    24 prior written permission from Apple.  Except as expressly stated in this notice,
    25 no other rights or licenses, express or implied, are granted by Apple herein,
    26 including but not limited to any patent rights that may be infringed by your
    27 derivative works or by other works in which the Apple Software may be
    28 incorporated.
    29 
    30 The Apple Software is provided by Apple on an "AS IS" basis.  APPLE MAKES NO
    31 WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
    32 WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    33 PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
    34 COMBINATION WITH YOUR PRODUCTS.
    35 
    36 IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
    37 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
    38 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    39 ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR
    40 DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF
    41 CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF
    42 APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    43 
    44 Copyright (C) 2008 Apple Inc. All Rights Reserved.
    45 
    46 */
    47 
    48 #import <UIKit/UIKit.h>
    49 #import "Test.h"
    50 
    51 int main(int argc, char *argv[])
    52 {
    53     RunTestCases(argc,(const char**)argv);
    54     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    55     int retVal = UIApplicationMain(argc, argv, nil, nil);
    56     [pool release];
    57     return retVal;
    58 }