25 lines
479 B
Plaintext
25 lines
479 B
Plaintext
//
|
|
// MusepackCodec.m
|
|
// MusepackCodec
|
|
//
|
|
// Created by Vincent Spader on 2/21/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "ShortenPlugin.h"
|
|
#import "ShortenDecoder.h"
|
|
#import "ShortenPropertiesReader.h"
|
|
|
|
@implementation ShortenPlugin
|
|
|
|
+ (NSDictionary *)pluginInfo
|
|
{
|
|
return [NSDictionary dictionaryWithObjectsAndKeys:
|
|
kCogDecoder, [ShortenDecoder className],
|
|
kCogPropertiesReader, [ShortenPropertiesReader className],
|
|
nil
|
|
];
|
|
}
|
|
|
|
@end
|