2007-10-11 21:03:12 -04:00
|
|
|
//
|
|
|
|
// DumbPlugin.m
|
|
|
|
// GME
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 10/11/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DumbPlugin.h"
|
|
|
|
|
|
|
|
#import "DumbDecoder.h"
|
|
|
|
#import "DumbPropertiesReader.h"
|
2007-10-12 22:20:51 -04:00
|
|
|
#import "DumbMetadataReader.h"
|
2007-10-11 21:03:12 -04:00
|
|
|
|
|
|
|
@implementation DumbPlugin
|
|
|
|
|
|
|
|
+ (NSDictionary *)pluginInfo
|
|
|
|
{
|
|
|
|
return [NSDictionary dictionaryWithObjectsAndKeys:
|
|
|
|
kCogDecoder, [DumbDecoder className],
|
|
|
|
kCogPropertiesReader, [DumbPropertiesReader className],
|
2007-10-12 22:20:51 -04:00
|
|
|
kCogMetadataReader, [DumbMetadataReader className],
|
2007-10-11 21:03:12 -04:00
|
|
|
nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|