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 / BGAudioScrobblerXmlRpcPost.h
100644 26 lines (20 sloc) 0.633 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
//
// BGAudioScrobblerXmlRpcPost.h
// ScrobblePod
//
// Created by Ben Gummer on 24/04/08.
// Copyright 2008 Ben Gummer. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface BGAudioScrobblerXmlRpcPost : NSObject {
NSString *methodName;
NSMutableArray *postParameters;
}
 
@property (copy) NSString *methodName;
-(NSString *)challengeFromPassword:(NSString *)aPass andTimestamp:(NSString *)aTime;
-(NSArray *)postParameters;
-(void)addPostParameter:(id)theParameter;
-(void)addAuthParametersWithUsername:(NSString *)aUsername andPassword:(NSString *)aPassword;
-(NSString *)xmlDescription;
-(NSString *)timestamp;
 
@end