Compiling .m skeleton

This commit is contained in:
Gregory John Casamento 2019-10-26 08:11:59 -04:00
parent 51fe0bc550
commit a3fee06e0a

View file

@ -26,5 +26,65 @@
@implementation NSBackgroundActivityScheduler
- (instancetype) initWithIdentifier: (NSString *)identifier
{
}
- (NSString *) identifier
{
}
- (void) setIdentifier: (NSString *)identifier
{
}
- (NSQualityOfService) qualityOfService
{
}
- (void) setQualityOfService: (NSQualityOfService)qualityOfService
{
}
- (BOOL) repeats
{
}
- (void) setRepeats: (BOOL)flag
{
}
- (NSTimeInterval) interval
{
}
- (void) setInterval: (NSTimeInterval)interval
{
}
- (NSTimeInterval) tolerance
{
}
- (void) setTolerance: (NSTimeInterval)interval
{
}
- (BOOL) shouldDefer
{
}
- (void) setShouldDefer: (BOOL)flag
{
}
- (void) scheduleWithBlock: (GSScheduledBlock)block
{
}
- (void) invalidate
{
}
@end