24 lines
451 B
Objective-C
24 lines
451 B
Objective-C
//
|
|
// Update.h
|
|
// ReiKey
|
|
//
|
|
// Created by Patrick Wardle on 12/24/18.
|
|
// Copyright © 2018 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#ifndef Update_h
|
|
#define Update_h
|
|
|
|
@import Cocoa;
|
|
@import Foundation;
|
|
|
|
@interface Update : NSObject
|
|
|
|
//check for an update
|
|
// will invoke app delegate method to update UI when check completes
|
|
-(void)checkForUpdate:(void (^)(NSUInteger result, NSString* latestVersion))completionHandler;
|
|
|
|
@end
|
|
|
|
#endif /* Update_h */
|