-#import "ITMTRemote.h"
-
-@implementation ITMTRemote
-
-+ (id)remote
-{
- return nil;
-}
-
-- (NSString *)remoteTitle
-{
- return nil;
-}
-
-- (NSString *)remoteInformation
-{
- return nil;
-}
-
-- (NSImage *)remoteIcon
-{
- return nil;
-}
-
-- (BOOL)begin
-{
- return NO;
-}
-
-- (BOOL)halt
-{
- return NO;
-}
-
-- (NSString *)playerFullName
-{
- return nil;
-}
-
-- (NSString *)playerSimpleName
-{
- return nil;
-}
-
-- (NSDictionary *)capabilities
-{
- return [NSDictionary dictionaryWithObjectsAndKeys:
- [NSNumber numberWithBool: NO], @"Remote", // Set this to YES for a valid remote, otherwise the remote will be unusable.
- [NSNumber numberWithBool: NO], @"Basic Track Control",
- [NSNumber numberWithBool: NO], @"Track Information",
- [NSNumber numberWithBool: NO], @"Track Navigation",
- [NSNumber numberWithBool: NO], @"Upcoming Songs",
- [NSNumber numberWithBool: NO], @"Playlists",
- [NSNumber numberWithBool: NO], @"Volume",
- [NSNumber numberWithBool: NO], @"Shuffle",
- [NSNumber numberWithBool: NO], @"Repeat Modes",
- [NSNumber numberWithBool: NO], @"Equalizer",
- [NSNumber numberWithBool: NO], @"Track Rating",
- nil];
-}
-
-- (BOOL)showPrimaryInterface
-{
- return NO;
-}
-
-- (ITMTRemotePlayerRunningState)playerRunningState
-{
- return nil;
-}
-
-- (ITMTRemotePlayerPlayingState)playerPlayingState
-{
- return nil;
-}
-
-- (NSArray *)playlists
-{
- return nil;
-}
-
-- (int)numberOfSongsInPlaylistAtIndex:(int)index
-{
- return nil;
-}
-
-- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass
-{
- return nil;
-}
-
-- (int)currentPlaylistIndex
-{
- return nil;
-}
-
-- (NSString *)songTitleAtIndex:(int)index
-{
- return nil;
-}
-
-- (int)currentAlbumTrackCount
-{
- return nil;
-}
-
-- (int)currentSongTrack
-{
- return nil;
-}
-
-- (NSString *)currentSongUniqueIdentifier
-{
- return nil;
-}
-
-- (int)currentSongIndex
-{
- return nil;
-}
-
-- (NSString *)currentSongTitle
-{
- return nil;
-}
-
-- (NSString *)currentSongArtist
-{
- return nil;
-}