Mostly empty Audioscrobbler controller to communicate with the Audioscrobbler servers.
[MenuTunes.git] / AudioscrobblerController.h
diff --git a/AudioscrobblerController.h b/AudioscrobblerController.h
new file mode 100644 (file)
index 0000000..6b62360
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ *     MenuTunes
+ *  AudioscrobblerController
+ *    Audioscrobbler Support Class
+ *
+ *  Original Author : Kent Sutherland <kent.sutherland@ithinksw.com>
+ *   Responsibility : Kent Sutherland <kent.sutherland@ithinksw.com>
+ *
+ *  Copyright (c) 2005 iThink Software.
+ *  All Rights Reserved
+ *
+ */
+
+#import <Cocoa/Cocoa.h>
+
+@interface AudioscrobblerController : NSObject {
+       BOOL _handshakeCompleted;
+       
+       NSMutableData *_responseData;
+}
++ (AudioscrobblerController *)sharedController;
+
+- (void)attemptHandshake;
+- (BOOL)handshakeCompleted;
+@end