mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 08:26:27 +00:00
Compiling .m skeleton
This commit is contained in:
parent
51fe0bc550
commit
a3fee06e0a
1 changed files with 60 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue