NewsBlur/clients/ios/Classes/offline/OfflineSyncUnreads.h
David Sinclair 5fe73d431b #817 (three column layout)
- Fixing warnings.
- Adding Swift subclasses of ObjC ones.
2020-08-27 21:26:12 -07:00

20 lines
422 B
Objective-C

//
// OfflineSyncUnreads.h
// NewsBlur
//
// Created by Samuel Clay on 7/15/13.
// Copyright (c) 2013 NewsBlur. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "NewsBlurAppDelegate.h"
#import "FMDatabaseQueue.h"
#import "NewsBlur-Swift.h"
@interface OfflineSyncUnreads : NSOperation
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
- (void)storeUnreadHashes:(NSDictionary *)results;
@end