Mostly empty Audioscrobbler controller to communicate with the Audioscrobbler servers.
[MenuTunes.git] / AudioscrobblerController.h
1 /*
2  *      MenuTunes
3  *  AudioscrobblerController
4  *    Audioscrobbler Support Class
5  *
6  *  Original Author : Kent Sutherland <kent.sutherland@ithinksw.com>
7  *   Responsibility : Kent Sutherland <kent.sutherland@ithinksw.com>
8  *
9  *  Copyright (c) 2005 iThink Software.
10  *  All Rights Reserved
11  *
12  */
13
14 #import <Cocoa/Cocoa.h>
15
16 @interface AudioscrobblerController : NSObject {
17         BOOL _handshakeCompleted;
18         
19         NSMutableData *_responseData;
20 }
21 + (AudioscrobblerController *)sharedController;
22
23 - (void)attemptHandshake;
24 - (BOOL)handshakeCompleted;
25 @end