-
Notifications
You must be signed in to change notification settings - Fork 0
/
EPFriendAndFollowerGetter.h
32 lines (23 loc) · 1 KB
/
EPFriendAndFollowerGetter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// EPFriendAndFollowerGetter.h
// Degrees of Tweetdom
//
// Created by Simone Manganelli on 2008-08-20.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class EPOperationQueue;
@interface EPFriendAndFollowerGetter : NSObject {
EPOperationQueue *theMainOperationQueue;
id statusDelegate;
}
- (id)initWithStatusDelegate:(id)delegate;
- (id)initWithStatusDelegate:(id)delegate andOperationQueue:(EPOperationQueue *)operationQueue;
- (void)createCacheFolders;
- (NSArray *)getFriendsForTwitterer:(NSString *)twitterHandle;
- (NSArray *)getFollowersForTwitterer:(NSString *)twitterHandle withPassword:(NSString *)twitterPassword;
- (NSArray *)getFriendsForTwitterer:(NSString *)twitterHandle followersWithPassword:(NSString *)twitterPassword;
- (void)downloadFriendsXMLFileForTwitterer:(NSString *)twitterHandle;
- (void)downloadFollowersXMLFileForTwitterer:(NSString *)twitterHandle withPassword:(NSString *)twitterPassword;
- (void)addStatusLine:(NSString *)statusLine;
@end