2012-07-20 15:54:10 -07:00
|
|
|
//
|
|
|
|
// DataUtilities.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/20/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
2012-07-26 13:54:45 -07:00
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2012-07-20 15:54:10 -07:00
|
|
|
@interface DataUtilities : NSObject
|
|
|
|
|
|
|
|
+ (NSArray *)updateUserProfiles:(NSArray *)userProfiles withNewUserProfiles:(NSArray *)newUserProfiles;
|
2012-07-26 13:54:45 -07:00
|
|
|
+ (NSDictionary *)updateComment:(NSDictionary *)newCommen for:(NewsBlurAppDelegate *)appDelegate;
|
2012-07-20 15:54:10 -07:00
|
|
|
|
|
|
|
@end
|