X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/6745d6b50f232e5d1da5c57032a669977bb37d8c..a9d5b3cd79988d85110185fafa9c4a38afe2027a:/iTunesTrack.m diff --git a/iTunesTrack.m b/iTunesTrack.m deleted file mode 100755 index 7b3a813..0000000 --- a/iTunesTrack.m +++ /dev/null @@ -1,24 +0,0 @@ -// -// iTunesTrack.m -// MenuTunes -// -// Created by Joseph Spiros on Sat Sep 06 2003. -// Copyright (c) 2003 __MyCompanyName__. All rights reserved. -// - -#import "iTunesTrack.h" - -@implementation iTunesTrack - -+ (id)trackWithDatabaseIndex:(int)index { - return [[[iTunesTrack alloc] initWithIndex:index] autorelease]; -} - -- (id)initWithDatabaseIndex:(int)index { - if ( ( self = [super init] ) ) { - _index = index; - } - return self; -} - -@end