mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
16 lines
315 B
Objective-C
16 lines
315 B
Objective-C
//
|
|
// Utilities.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Samuel Clay on 10/17/11.
|
|
// Copyright (c) 2011 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface Utilities : NSObject
|
|
|
|
+ (void)saveImage:(UIImage *)image feedId:(NSString *)filename;
|
|
+ (UIImage *)getImage:(NSString *)filename;
|
|
|
|
@end
|