Files
wagic/projects/mtg/iOS/UI/WagicDownloadProgressViewController.h
techdragon.nguyen@gmail.com 5c3baedf83 moved Wagic Version macros into a new header file so that iOS can use it.
updated iOS port to use wagic versioning macros.
2012-02-05 11:16:43 +00:00

24 lines
611 B
Objective-C

//
// WagicDownloadProgressView.h
// wagic
//
// Created by Michael Nguyen on 12/10/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface WagicDownloadProgressViewController : UIViewController<UIAlertViewDelegate>
{
}
- (void) startDownload: (NSString *) downloadType;
@property (nonatomic, retain) UITextView *downloadMessageStatus;
@property (nonatomic, retain) UIProgressView *downloadProgressView;
@property (nonatomic, retain) NSString *kDownloadFileName;
@property (nonatomic, retain) NSString *kDownloadIosUpdateFileName;
@end