Playlist Generator
1.0
|
00001 // 00002 // URIToURLConverter.h 00003 // Playlist2 00004 // 00005 // Created by Max Woolf on 18/12/2011. 00006 // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 00007 // 00008 00009 #import <Foundation/Foundation.h> 00010 00011 @interface URIToURLConverter : NSObject 00012 { 00013 NSString *URI; 00014 } 00015 00016 -(id)initWithSpotifyURI:(NSString *)URI; 00017 -(NSString *)convertToURL; 00018 @end