Playlist Generator  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Defines
Playlist2/ExtractSpotifyURI.h
Go to the documentation of this file.
00001 //
00002 //  ExtractSpotifyURI.h
00003 //  Playlist2
00004 //
00005 //  Created by Max Woolf on 17/12/2011.
00006 //  Copyright (c) 2011 __MyCompanyName__. All rights reserved.
00007 //
00008 
00009 #import <Foundation/Foundation.h>
00010 #import "SBJson.h"
00011 
00012 @interface ExtractSpotifyURI : NSObject
00013 {
00014     NSString *spotifyJSON;
00015     SBJsonParser *parser;
00016 }
00017 
00018 
00019 -(id)initWithSpotifyJSONString:(NSString *)input;
00020 -(NSString *)getURI;
00021 @end