Cog/Plugins/CueSheet/CueSheetPlugin.m
vspader c536ea06a5 Removed useless PropertiesReader classes.
PluginController now uses the decoder if a properties reader class is not found.
PropertiesReaders should still be created if performance can be improved if code is only reading properties.
2007-10-14 17:31:20 +00:00

26 lines
551 B
Objective-C

//
// CueSheetPlugin.m
// CueSheet
//
// Created by Zaphod Beeblebrox on 10/8/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import "CueSheetPlugin.h"
#import "CueSheetContainer.h"
#import "CueSheetDecoder.h"
#import "CueSheetMetadataReader.h"
@implementation CueSheetPlugin
+ (NSDictionary *)pluginInfo
{
return [NSDictionary dictionaryWithObjectsAndKeys:
kCogContainer, [CueSheetContainer className],
kCogDecoder, [CueSheetDecoder className],
kCogMetadataReader, [CueSheetMetadataReader className],
nil];
}
@end