mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-18 12:24:20 +00:00
18 lines
465 B
Objective-C
Executable file
18 lines
465 B
Objective-C
Executable file
//
|
|
// RWInstapaperActivityRequest.h
|
|
// InstapaperActivity
|
|
//
|
|
// Created by Justin Ridgewell on 2/28/13.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "ZYInstapaperAddRequestDelegate.h"
|
|
|
|
@class ZYInstapaperActivityItem;
|
|
@interface RWInstapaperActivityRequest : NSObject
|
|
|
|
- (id)initWithItem:(ZYInstapaperActivityItem *)item username:(NSString *)username password:(NSString *)password delegate:(id<ZYInstapaperAddRequestDelegate>)delegate;
|
|
- (void)cancel;
|
|
|
|
@end
|