Files
Sparkle/sparkle-cli/SPUCommandLineUserDriver.h
T
Zorg eda1b4bdaa Remove SparkleCore target and use <> imports
In some cases for shared headers in downloader XPC Service or generate_appcast / sign_update tools, I had to do a little dance for using double quote imports.
2021-06-06 18:38:49 -07:00

21 lines
512 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
@interface SPUCommandLineUserDriver : NSObject <SPUUserDriver>
- (instancetype)initWithUpdatePermissionResponse:(nullable SUUpdatePermissionResponse *)updatePermissionResponse deferInstallation:(BOOL)deferInstallation verbose:(BOOL)verbose;
@end
NS_ASSUME_NONNULL_END