20 lines
377 B
Objective-C
20 lines
377 B
Objective-C
//
|
|
// AudioMetadataReader.m
|
|
// CogAudio
|
|
//
|
|
// Created by Vincent Spader on 2/24/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "AudioMetadataReader.h"
|
|
#import "PluginController.h"
|
|
|
|
@implementation AudioMetadataReader
|
|
|
|
+ (NSDictionary *)metadataForURL:(NSURL *)url
|
|
{
|
|
return [[PluginController sharedPluginController] metadataForURL:url];
|
|
}
|
|
|
|
@end
|