mirror of
https://github.com/sparkle-project/Sparkle.git
synced 2025-11-01 15:34:38 +00:00
21 lines
536 B
Objective-C
21 lines
536 B
Objective-C
//
|
|
// SUCommandLineUserDriver.h
|
|
// Sparkle
|
|
//
|
|
// Created by Mayur Pawashe on 4/10/16.
|
|
// Copyright © 2016 Sparkle Project. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <Sparkle/Sparkle.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
SPU_OBJC_DIRECT_MEMBERS @interface SPUCommandLineUserDriver : NSObject <SPUUserDriver>
|
|
|
|
- (instancetype)initWithUpdatePermissionResponse:(nullable SUUpdatePermissionResponse *)updatePermissionResponse deferInstallation:(BOOL)deferInstallation verbose:(BOOL)verbose;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|