25 lines
438 B
Objective-C
25 lines
438 B
Objective-C
//
|
|
// DumbPlugin.m
|
|
// GME
|
|
//
|
|
// Created by Vincent Spader on 10/11/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "DumbPlugin.h"
|
|
|
|
#import "DumbDecoder.h"
|
|
#import "DumbMetadataReader.h"
|
|
|
|
@implementation DumbPlugin
|
|
|
|
+ (NSDictionary *)pluginInfo
|
|
{
|
|
return [NSDictionary dictionaryWithObjectsAndKeys:
|
|
kCogDecoder, [DumbDecoder className],
|
|
kCogMetadataReader, [DumbMetadataReader className],
|
|
nil];
|
|
}
|
|
|
|
@end
|