Cog/Plugins/MonkeysAudio/MonkeysAudioPlugin.mm
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

23 lines
399 B
Text

//
// MusepackCodec.m
// MusepackCodec
//
// Created by Vincent Spader on 2/21/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import "MonkeysAudioPlugin.h"
#import "MonkeysAudioDecoder.h"
@implementation MonkeysAudioPlugin
+ (NSDictionary *)pluginInfo
{
return [NSDictionary dictionaryWithObjectsAndKeys:
kCogDecoder, [MonkeysAudioDecoder className],
nil
];
}
@end