mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
19 lines
480 B
Objective-C
Executable file
19 lines
480 B
Objective-C
Executable file
//
|
|
// ZYInstapaperAddRequestDelegate.h
|
|
// ZYInstapaperActivity
|
|
//
|
|
// Created by Mariano Abdala on 9/30/12.
|
|
// Copyright (c) 2012 Zerously. All rights reserved.
|
|
//
|
|
// https://github.com/marianoabdala/ZYInstapaperActivity
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol ZYInstapaperAddRequestDelegate <NSObject>
|
|
|
|
- (void)instapaperAddRequestSucceded:(id)request;
|
|
- (void)instapaperAddRequestFailed:(id)request;
|
|
- (void)instapaperAddRequestIncorrectPassword:(id)request;
|
|
|
|
@end
|