mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
18 lines
442 B
Objective-C
18 lines
442 B
Objective-C
//
|
|
// DataUtilities.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Roy Yang on 7/20/12.
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
@interface DataUtilities : NSObject
|
|
|
|
+ (NSArray *)updateUserProfiles:(NSArray *)userProfiles withNewUserProfiles:(NSArray *)newUserProfiles;
|
|
+ (NSDictionary *)updateComment:(NSDictionary *)newCommen for:(NewsBlurAppDelegate *)appDelegate;
|
|
|
|
@end
|