Files
2018-04-19 11:53:16 -07:00

27 lines
505 B
Objective-C
Executable File

//
// file: Update.h
// project: DND (shared)
// description: checks for new versions of DND (header)
//
// created by Patrick Wardle
// copyright (c) 2018 Objective-See. All rights reserved.
//
#ifndef Update_h
#define Update_h
@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 */