Sparkle  2.0.0
A software update framework for macOS
InstallerProgressAppController.h
1 //
2 // InstallerProgressAppController.h
3 // Sparkle
4 //
5 // Created by Mayur Pawashe on 4/10/16.
6 // Copyright © 2016 Sparkle Project. All rights reserved.
7 //
8 
9 #import <Cocoa/Cocoa.h>
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
14 
15 @interface InstallerProgressAppController : NSObject <NSApplicationDelegate>
16 
17 - (instancetype)initWithApplication:(NSApplication *)application arguments:(NSArray<NSString *> *)arguments delegate:(id<InstallerProgressDelegate>)delegate;
18 
19 - (void)run;
20 
21 - (void)cleanupAndExitWithStatus:(int)status error:(NSError * _Nullable)error __attribute__((noreturn));
22 
23 @end
24 
25 NS_ASSUME_NONNULL_END
Definition: InstallerProgressAppController.h:15
Definition: InstallerProgressDelegate.h:15