forked from mattgemmell/MGTwitterEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMGTwitterParserDelegate.h
More file actions
28 lines (21 loc) · 840 Bytes
/
Copy pathMGTwitterParserDelegate.h
File metadata and controls
28 lines (21 loc) · 840 Bytes
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
//
// MGTwitterParserDelegate.h
// MGTwitterEngine
//
// Created by Matt Gemmell on 18/02/2008.
// Copyright 2008 Instinctive Code.
//
#import "MGTwitterEngineGlobalHeader.h"
#import "MGTwitterRequestTypes.h"
@protocol MGTwitterParserDelegate
- (void)parsingSucceededForRequest:(NSString *)identifier
ofResponseType:(MGTwitterResponseType)responseType
withParsedObjects:(NSArray *)parsedObjects;
- (void)parsingFailedForRequest:(NSString *)requestIdentifier
ofResponseType:(MGTwitterResponseType)responseType
withError:(NSError *)error;
#if YAJL_AVAILABLE || TOUCHJSON_AVAILABLE
- (void)parsedObject:(NSDictionary *)parsedObject forRequest:(NSString *)identifier
ofResponseType:(MGTwitterResponseType)responseType;
#endif
@end