mirror of
https://github.com/ish-app/ish.git
synced 2026-01-18 13:57:29 +00:00
20 lines
357 B
Objective-C
20 lines
357 B
Objective-C
//
|
|
// ProgressReportViewController.h
|
|
// iSH
|
|
//
|
|
// Created by Theodore Dubois on 6/18/20.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "Roots.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ProgressReportViewController : UIViewController <ProgressReporter>
|
|
|
|
- (void)updateProgress:(double)progressFraction message:(NSString *)progressMessage;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|