"Fossies" - the Fresh Open Source Software Archive

Member "xdelta3-3.0.11/examples/iOS/xdelta3-ios-test/xdelta3-ios-test/Xd3iOSViewController.h" (24 Mar 2015, 543 Bytes) of package /linux/misc/xdelta3-3.0.11.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 //
    2 //  Xd3iOSViewController.h
    3 //  xdelta3-ios-test
    4 //
    5 //  Created by Joshua MacDonald on 6/16/12.
    6 //  Copyright (c) 2011, 2012 Joshua MacDonald. All rights reserved.
    7 //
    8 
    9 #import <UIKit/UIKit.h>
   10 
   11 @interface Xd3iOSViewController : UIViewController <UITextViewDelegate> {
   12     NSString *inputSeed;
   13 }
   14 - (IBAction)startTest:(id)sender;
   15 @property (weak, nonatomic) IBOutlet UITextField *theSeed;
   16 @property (weak, nonatomic) IBOutlet UITextView *theView;
   17 @property (atomic, retain) NSMutableString *theOutput;
   18 @property (nonatomic) BOOL inTest;
   19 
   20 @end