mirror of
https://github.com/sparkle-project/Sparkle.git
synced 2025-11-01 15:34:38 +00:00
19 lines
486 B
Objective-C
19 lines
486 B
Objective-C
//
|
|
// SUInstallUpdateViewController.h
|
|
// Sparkle
|
|
//
|
|
// Created by Mayur Pawashe on 3/5/16.
|
|
// Copyright © 2016 Sparkle Project. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <Sparkle/Sparkle.h>
|
|
|
|
SPU_OBJC_DIRECT_MEMBERS @interface SUInstallUpdateViewController : NSViewController
|
|
|
|
- (instancetype)initWithAppcastItem:(SUAppcastItem *)appcastItem reply:(void (^)(SPUUserUpdateChoice))reply;
|
|
|
|
- (void)showReleaseNotesWithDownloadData:(SPUDownloadData *)downloadData;
|
|
|
|
@end
|