public
Description: Mac OS X Last.fm scrobbler for iTunes and iPod
Homepage: http://www.scrobblepod.com
Clone URL: git://github.com/scrobblepod/scrobblepod.git
scrobblepod / BGLastFmHandshakeResponse.h
100644 32 lines (24 sloc) 0.61 kb
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
//
// BGLastFmHandshakeResponse.h
// LastFmProtocolTester
//
// Created by Ben Gummer on 8/07/07.
// Copyright 2007 Ben Gummer. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface BGLastFmHandshakeResponse : NSObject {
NSArray *responseLines;
NSMutableDictionary *responseComponents;
int responseType;
}
 
-(id)initWithHandshakeResponseString:(NSString *)aString;
-(NSDictionary *)parseResponse;
-(NSString *)description;
 
-(NSString *)sessionKey;
-(BOOL)didFail;
-(int)responseType;
-(NSURL *)nowPlayingURL;
-(NSURL *)postURL;
-(NSString *)failureReason;
 
-(void)setDidFail:(BOOL)aBool;
 
@end